We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009d0a6 commit c8ec4a3Copy full SHA for c8ec4a3
.github/workflows/CI.yml
@@ -81,7 +81,7 @@ jobs:
81
82
- name: "Run tests"
83
run: |
84
- npm run test:backend
+ npm run test-coverage:backend
85
86
- name: "Upload coverage results"
87
uses: codecov/codecov-action@v5.1.2
package.json
@@ -76,7 +76,7 @@
76
"start": "vite --config frontend.vite.config.ts",
77
"test:backend": "vitest --config backend.vite.config.ts",
78
"test:frontend": "nyc --reporter=lcov playwright test",
79
- "test": "run-p -c test:*",
+ "test-coverage:backend": "vitest run --coverage --config backend.vite.config.ts",
80
"playwright-interactive": "playwright test --ui"
}
0 commit comments