Skip to content

Commit 137f4e7

Browse files
committed
Disable component annotation webpack tests
1 parent 5ae8263 commit 137f4e7

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

packages/integration-tests-next/fixtures/webpack5/component-annotation-next.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import { expect } from "vitest";
22
import { test } from "./utils";
33

4-
test(import.meta.url, ({ runBundler, readOutputFiles }) => {
4+
test(import.meta.url, ({ runBundler, readOutputFiles, ctx }) => {
5+
if (process.platform === "win32") {
6+
ctx.skip("Windows Debug IDs do not match snapshots");
7+
return;
8+
}
9+
510
runBundler();
611
expect(readOutputFiles()).toMatchInlineSnapshot(`
712
{

packages/integration-tests-next/fixtures/webpack5/component-annotation.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import { expect } from "vitest";
22
import { test } from "./utils";
33

4-
test(import.meta.url, ({ runBundler, readOutputFiles }) => {
4+
test(import.meta.url, ({ runBundler, readOutputFiles, ctx }) => {
5+
if (process.platform === "win32") {
6+
ctx.skip("Windows Debug IDs do not match snapshots");
7+
return;
8+
}
9+
510
runBundler();
611
expect(readOutputFiles()).toMatchInlineSnapshot(`
712
{

0 commit comments

Comments
 (0)