Skip to content

Commit

Permalink
feat: change default timeout to 60000 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
popomore authored and dead-horse committed Apr 28, 2017
1 parent a236aa8 commit cbc9263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cmd/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TestCommand extends Command {
const testArgv = Object.assign({}, argv);

/* istanbul ignore next */
testArgv.timeout = testArgv.timeout || process.env.TEST_TIMEOUT || 30000;
testArgv.timeout = testArgv.timeout || process.env.TEST_TIMEOUT || 60000;
testArgv.reporter = testArgv.reporter || process.env.TEST_REPORTER;

if (debug) {
Expand Down

0 comments on commit cbc9263

Please sign in to comment.