test-coverage -> test-unit-coverage

This commit is contained in:
Daniel Imms
2019-11-06 11:23:42 -08:00
parent fe2f1ea4df
commit 31afe5b305
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
displayName: Cache node modules
- script: yarn --frozen-lockfile
displayName: 'Install dependencies and build'
- script: yarn test-coverage --forbid-only
- script: yarn test-unit-coverage --forbid-only
displayName: 'Unit tests'
- script: yarn lint
displayName: 'Lint'
+1 -1
View File
@@ -16,7 +16,7 @@
"posttest": "npm run lint",
"test-api": "mocha \"**/*.api.js\"",
"test-unit": "node ./bin/test.js",
"test-coverage": "node ./bin/test.js --coverage",
"test-unit-coverage": "node ./bin/test.js --coverage",
"build": "tsc -b ./tsconfig.all.json",
"prepare": "npm run setup",
"setup": "npm run build",