Skip to content

Commit

Permalink
build: increase test timeout for npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jun 12, 2019
1 parent 84abf7b commit d5e01bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/3.x/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ suite('express 3.x')
before(function (done) {
var env = utils.childEnvironment()

this.timeout(30000)
exec('npm install --prefix . express@~3.16.8', { cwd: __dirname, env: env }, function (err, stderr) {
if (err) {
err.message += stderr
Expand Down
1 change: 1 addition & 0 deletions test/4.x/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ suite('express 4.x')
before(function (done) {
var env = utils.childEnvironment()

this.timeout(30000)
exec('npm install --prefix . express@4.12.0', { cwd: __dirname, env: env }, function (err, stderr) {
if (err) {
err.message += stderr
Expand Down
1 change: 0 additions & 1 deletion test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
--ui qunit
--reporter list
--bail
--timeout 16000

0 comments on commit d5e01bc

Please sign in to comment.