Skip to content

Commit

Permalink
chore: move mocha options to mocha.opts (#52)
Browse files Browse the repository at this point in the history
* chore: move mocha options to mocha.opts

* fix
  • Loading branch information
JustinBeckwith authored and jkwlui committed Jul 30, 2018
1 parent 1dcec8b commit fa5d0fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-oslogin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"test": "npm run cover",
"generate-scaffolding": "repo-tools generate all",
"generate-scaffolding-samples": "repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"cover": "nyc --reporter=lcov mocha --require intelli-espower-loader test/*.js && nyc report",
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test-no-cover": "mocha test/*.js --no-timeouts",
"test-no-cover": "mocha test/*.js",
"lint": "eslint src/ samples/ system-test/ test/",
"prettier": "prettier --write src/*.js src/*/*.js samples/*.js samples/*/*.js test/*.js test/*/*.js system-test/*.js system-test/*/*.js smoke-test/*.js",
"docs": "jsdoc -c .jsdoc.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/google-cloud-oslogin/test/mocha.opts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--require intelli-espower-loader
--timeout 10000

0 comments on commit fa5d0fe

Please sign in to comment.