Skip to content

Commit f5aecd6

Browse files
authored
test: skip native watcher test case for skip chunk build case (#12858)
1 parent a4f6874 commit f5aecd6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

tests/rspack-test/NativeWatcher.part1.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ describeByWalk(
1414
exclude: [
1515
// Exclude cp-z
1616
/^c[p-z]/,
17-
/^[d-z]/
17+
/^[d-z]/,
18+
// Exclude flaky tests
19+
/skip-building-chunk-graph/
1820
]
1921
}
2022
);

tests/rspack-test/NativeWatcher.part2.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ describeByWalk(
1616
/^[a-c][a-o]/,
1717
/^[ab]/,
1818
// Exclude r-z
19-
/^[r-z]/
19+
/^[r-z]/,
20+
// Exclude flaky tests
21+
/skip-building-chunk-graph/
2022
]
2123
}
2224
);

tests/rspack-test/NativeWatcher.part3.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ describeByWalk(
1313
dist: path.resolve(__dirname, `./js/native-watcher/watch`),
1414
exclude: [
1515
// Exclude a-p
16-
/^[a-p]/
16+
/^[a-p]/,
17+
// Exclude flaky tests
18+
/skip-building-chunk-graph/
1719
]
1820
}
1921
);

0 commit comments

Comments
 (0)