chore: make tests faster

This commit is contained in:
Koen Kanters
2024-05-08 23:32:46 +02:00
parent 6bcb4b66b1
commit 350c682e8f
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
- name: Build
run: npm run build
- name: Test
run: npm run test-with-coverage:ci
run: npm run test-with-coverage
- name: Lint
run: npm run eslint
- name: Docker login
-1
View File
@@ -25,7 +25,6 @@
"eslint": "eslint lib/ --max-warnings=0",
"start": "node index.js",
"test-with-coverage": "jest test --silent --maxWorkers=50% --coverage",
"test-with-coverage:ci": "jest test --silent --runInBand --coverage",
"test": "jest test --silent --maxWorkers=50%",
"test-watch": "jest test --silent --maxWorkers=25% --watch"
},