chore(test): Changed default TAP test suite timeout from 30s to 45s because Windows takes a long time

This commit is contained in:
Lam Wei Li 2022-01-19 00:23:07 +08:00
parent 05935cc9c6
commit 3caa706ee2
No known key found for this signature in database
GPG Key ID: 90F6ABECF080D7BF

View File

@ -29,7 +29,7 @@
},
"scripts": {
"pretest": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "tap \"test/tap/**/*.js\" --cov",
"test": "TAP_TIMEOUT=45 tap \"test/tap/**/*.js\" --cov",
"typings": "tsc -p types/tsconfig.json",
"codecov": "tap \"test/tap/**/*.js\" --cov --coverage-report=lcov && codecov"
},