Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Bump timeouts
Browse files Browse the repository at this point in the history
These two started timing out for some reason. Picked the highest of similar
tests.
  • Loading branch information
cds-amal committed Jul 14, 2021
1 parent e8cccf9 commit 91ae7e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/truffle/test/scenarios/commands/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe("truffle build [ @standalone ]", () => {
await CommandRunner.run("build", config);
const output = logger.contents();
assert(output.includes("No build configuration found."));
});
}).timeout(30000);
});

describe("when there is a proper build config", () => {
Expand All @@ -50,7 +50,7 @@ describe("truffle build [ @standalone ]", () => {
await CommandRunner.run("build", config);
const output = logger.contents();
assert(output.includes("'this is the build script'"));
});
}).timeout(30000);
});

describe("when there is an object in the build config", () => {
Expand Down

0 comments on commit 91ae7e8

Please sign in to comment.