Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored tests #159

Merged
merged 17 commits into from
Aug 3, 2016
Prev Previous commit
Next Next commit
Fix build.
jmdobry committed Jul 30, 2016
commit 601b70b85359205fb2f053b5c3c8ca8991c4c1d9
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@
"mocha": "mocha -R spec -S -t 120000 --require intelli-espower-loader ./test/_setup.js '{*,appengine/*,functions/*}/test/*.test.js'",
"test": "npm run mocha",
"cover": "nyc --cache npm test && nyc report --reporter=html && nyc report --reporter=lcov",
"system-test": "mocha -R spec -S -t 120000 --require intelli-espower-loader system-test/_setup.js {*,appengine/*}/system-test/*.test.js",
"system-test": "mocha -R spec -S -t 120000 --require intelli-espower-loader system-test/_setup.js '{*,appengine/*}/system-test/*.test.js'",
"system-cover": "npm run pretest && nyc --cache npm run system-test && nyc report --reporter=html && nyc report --reporter=lcov"
},
"devDependencies": {
2 changes: 1 addition & 1 deletion scripts/install
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ require('shelljs/global');
// Install NPM dependencies, in up to 4 directories at a time
var queue = async.queue(function (directory, callback) {
installForDirectory(directory, callback);
}, 4);
}, 5);

queueDirectories('appengine');
queue.push('bigquery');