ci: ng test fix
Build / Build-and-ng-test (pull_request) Failing after 1m4s Details

This commit is contained in:
Mihajlo Medjedovic 2024-04-12 14:23:04 +02:00
parent ddf36230bf
commit 3202cb8e08
3 changed files with 3 additions and 3 deletions

View File

@ -39,4 +39,4 @@ jobs:
- name: Angular Tests
run: |
cd client
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
npm run test:headless

View File

@ -55,7 +55,7 @@ jobs:
- name: Angular Tests
run: |
cd client
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
npm run test:headless
- name: Angular Production Build
run: |

View File

@ -19,7 +19,7 @@
"viyabuild": "cd build; ./viyabuild.sh",
"lint": "cd .. && npm run lint",
"test": "npx ng test",
"test:headless": "ng test --browsers ChromeHeadless",
"test:headless": "npx ng test --no-watch --no-progress --browsers ChromeHeadless",
"watch": "ng test watch=true",
"pree2e": "webdriver-manager update",
"e2e": "protractor protractor.config.js",