Skip to content

Commit

Permalink
Update CI config (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpebot authored and JustinBeckwith committed Sep 27, 2018
1 parent 9cc2d06 commit 9f1b4cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let spawn = require('child_process').spawn;
//USE: ./index.js <ms npm can be idle> <number of attempts> [... NPM ARGS]
//

let timeout = process.argv[2] || 60000;
let timeout = process.argv[2] || process.env.NPM_INSTALL_TIMEOUT || 60000;
let attempts = process.argv[3] || 3;
let args = process.argv.slice(4);
if (args.length === 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"node": ">=8"
},
"scripts": {
"ava": "ava -T 20s --verbose test/*.test.js ./system-test/*.test.js",
"cover": "nyc --reporter=lcov --cache ava -T 20s --verbose test/*.test.js ./system-test/*.test.js && nyc report",
"test": "ava -T 5m --verbose system-test/*.test.js"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
'use strict';

describe('VideoIntelligenceServiceSmokeTest', () => {
LongRunningOptionalArrayMethod$;
$unhandledCase: LongRunningOptionalArrayMethod$
});

0 comments on commit 9f1b4cb

Please sign in to comment.