Skip to content

Commit 01a5224

Browse files
authored
Merge pull request webpack#6664 from webpack/ci/test-timeout
larger timeouts to make CI more stable
2 parents 6970103 + 1248616 commit 01a5224

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/Examples.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("Examples", () => {
1919
it("should compile " + path.relative(basePath, examplePath), function(
2020
done
2121
) {
22-
this.timeout(20000);
22+
this.timeout(30000);
2323
let options = {};
2424
let webpackConfigPath = path.join(examplePath, "webpack.config.js");
2525
webpackConfigPath =

test/HotTestCases.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ describe("HotTestCases", () => {
2828
const suite = describe(testName, function() {
2929
this.timeout(10000);
3030
});
31-
it(testName + " should compile", done => {
31+
it(testName + " should compile", function(done) {
32+
this.timeout(10000);
3233
const testDirectory = path.join(casesPath, category.name, testName);
3334
const outputDirectory = path.join(
3435
__dirname,

0 commit comments

Comments
 (0)