Skip to content

Commit

Permalink
[ci] Fix headless tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed May 8, 2024
1 parent 435fdcc commit e20b6f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npm install
- name: Run Tests
working-directory: ./firebird-ng
run: ng test --watch=false --browsers=ChromeHeadlessCI
run: npm run test-headless

build:
needs: test
Expand Down
3 changes: 2 additions & 1 deletion firebird-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"test": "ng test",
"test-headless": "ng test --watch=false --browsers=ChromeHeadlessCI"
},
"private": true,
"dependencies": {
Expand Down

0 comments on commit e20b6f4

Please sign in to comment.