chore: Make script names consistent.

This commit is contained in:
Ruben Verborgh 2020-12-13 15:49:00 +00:00
parent 1bb5de97ab
commit 99165e8bc2
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ jobs:
- name: Validate components files
run: npm run validate
- name: Type-check tests
run: npm run test:tsc
run: npm run test:ts
- name: Run unit tests
run: npm run test:unit
- name: Submit unit test coverage

View File

@ -52,7 +52,7 @@
"start": "node ./bin/server.js -p 3000",
"test": "npm run test:tsc && npm run jest",
"test:deploy": "test/deploy/validate-package.sh",
"test:tsc": "tsc -p test --noEmit",
"test:ts": "tsc -p test --noEmit",
"test:integration": "jest --coverageThreshold '{}' test/integration",
"test:unit": "jest test/unit",
"validate": "componentsjs-compile-config urn:solid-server:default:Initializer -c config/config-default.json -f > /dev/null",