Skip to content

Commit 3513058

Browse files
committed
fix skipped tests
1 parent e48c9cb commit 3513058

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/WatchDetection.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const webpack = require("../");
99

1010
describe("WatchDetection", () => {
1111
if (process.env.NO_WATCH_TESTS) {
12-
it("long running tests excluded");
12+
it.skip("long running tests excluded", () => {});
1313
return;
1414
}
1515

test/WatchTestCases.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function copyDiff(src, dest) {
3131

3232
describe("WatchTestCases", () => {
3333
if (process.env.NO_WATCH_TESTS) {
34-
it("long running tests excluded");
34+
it.skip("long running tests excluded", () => {});
3535
return;
3636
}
3737

test/WatcherEvents.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const createMultiCompiler = () => {
2929

3030
describe("WatcherEvents", () => {
3131
if (process.env.NO_WATCH_TESTS) {
32-
it("long running tests excluded");
32+
it.skip("long running tests excluded", () => {});
3333
return;
3434
}
3535

0 commit comments

Comments
 (0)