Skip to content

Commit

Permalink
fix: Debugging
Browse files Browse the repository at this point in the history
Still no generated files
  • Loading branch information
BKristenssonAlfsson committed Jun 12, 2020
1 parent 03d8637 commit ad2dc3f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
file: ./coverage/coverage-final.json # optional
file: ./coverag*/coverage-final.json # optional
fail_ci_if_error: true # optional (default = false)
- name: Build PWA distribution for production
run: |
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ cypress/screenshots/

# Test coverage reports
.nyc_output/
coverage/
coverage/
coverage-jest/
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
'.*\\.vue$': 'vue-jest'
},
collectCoverage: true,
coverageDirectory: "./coverage/jest",
coverageDirectory: "./coverage-jest",
coverageReporters: ["json"],
collectCoverageFrom: [
'<rootDir>/**/*.vue',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"codecov": "codecov -f coverage/coverage-final.json && codecov -f coverage/jest/coverage-final.json",
"codecov": "codecov -f coverage/coverage-final.json && codecov -f coverage-jest/coverage-final.json",
"test:unit": "jest",
"test:e2e": "npx cypress run",
"test": "npm run test:unit && npm run test:e2e"
Expand Down

0 comments on commit ad2dc3f

Please sign in to comment.