fix: increase mocha timeout value

prior CI runs were failing because of this.
This commit is contained in:
F. Eugene Aumson
2018-09-24 15:45:19 -04:00
parent 9af5e3ba8e
commit 574270d061

View File

@@ -6,7 +6,7 @@
"types": "lib/src/index.d.js",
"scripts": {
"build": "tsc",
"test": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --timeout 5000 --exit",
"test": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --timeout 6000 --exit",
"test:circleci": "yarn test:coverage",
"test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",