Skip to content

Commit

Permalink
Merge pull request #6664 from webpack/ci/test-timeout
Browse files Browse the repository at this point in the history
larger timeouts to make CI more stable
  • Loading branch information
sokra committed Mar 5, 2018
2 parents 6970103 + 1248616 commit 01a5224
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Examples.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("Examples", () => {
it("should compile " + path.relative(basePath, examplePath), function(
done
) {
this.timeout(20000);
this.timeout(30000);
let options = {};
let webpackConfigPath = path.join(examplePath, "webpack.config.js");
webpackConfigPath =
Expand Down
3 changes: 2 additions & 1 deletion test/HotTestCases.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ describe("HotTestCases", () => {
const suite = describe(testName, function() {
this.timeout(10000);
});
it(testName + " should compile", done => {
it(testName + " should compile", function(done) {
this.timeout(10000);
const testDirectory = path.join(casesPath, category.name, testName);
const outputDirectory = path.join(
__dirname,
Expand Down

0 comments on commit 01a5224

Please sign in to comment.