Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit dc4cfc5

Browse files
committed
fix: headless testing
1 parent fd5400b commit dc4cfc5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/node-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- run: npm install --frozen-lockfile
19-
- run: npm run test --watch=false -- --browsers=ChromeHeadless
19+
- run: npm run test -- -c ci

angular.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
"options": {
3030
"tsConfig": "projects/openapi-fetch-angular/tsconfig.spec.json",
3131
"polyfills": ["zone.js", "zone.js/testing"]
32+
},
33+
"configurations": {
34+
"ci": {
35+
"watch": false,
36+
"progress": false,
37+
"browsers": "ChromeHeadless"
38+
}
3239
}
3340
},
3441
"lint": {

0 commit comments

Comments
 (0)