Skip to content

Commit

Permalink
Bumped up default timeout to be more permissive.
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinbrown committed Apr 23, 2019
1 parent 447ace5 commit 201dc53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cli/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ export const runTests = async () => {
}

// Our tests are more like integration tests than unit tests. Taking two seconds is
// pretty reasonable in our case.
// pretty reasonable in our case and it's possible a successful test would take 10 seconds.
mocha.slow(2000);
mocha.timeout(10000);

// Run the tests.
await new Promise((resolve, reject) =>
Expand Down

0 comments on commit 201dc53

Please sign in to comment.