Skip to content

Commit

Permalink
Merge pull request #2127 from headlamp-k8s/coverage-fix
Browse files Browse the repository at this point in the history
frontend: vite.config: Fix coverage report names, and excludes
  • Loading branch information
joaquimrocha authored Jul 3, 2024
2 parents 7529b1b + 1254001 commit b93cc37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export default defineConfig({
},
],
coverage: {
reporter: ['text'],
reporter: [['text', {maxCols: 200}]],
exclude: ['node_modules/**', 'build/**'],
},
restoreMocks: false,
setupFiles: ['./src/setupTests.ts'],
Expand Down

0 comments on commit b93cc37

Please sign in to comment.