We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ffb3e2 commit d66cabaCopy full SHA for d66caba
2 files changed
.github/workflows/main.yml
@@ -25,7 +25,7 @@ jobs:
25
run: npm ci
26
27
- name: Run Tests
28
- run: npm run test
+ run: npm run test:cov -- --verbose
29
env:
30
JWT_SECRET: ${{ secrets.JWT_SECRET }} # GitHub Secrets para seguridad
31
backend/package.json
@@ -92,6 +92,14 @@
92
"testEnvironment": "node",
93
"moduleNameMapper": {
94
"^src/(.*)$": "<rootDir>/$1"
95
+ },
96
+ "coverageThreshold": {
97
+ "global": {
98
+ "branches": 85,
99
+ "functions": 85,
100
+ "lines": 85,
101
+ "statements": 85
102
+ }
103
}
104
105
0 commit comments