Skip to content

Commit

Permalink
Fix coverage command to exclude non-source code files
Browse files Browse the repository at this point in the history
  • Loading branch information
i-like-robots committed Oct 22, 2024
1 parent c1c2fb2 commit a9fe07f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export default {
environment: 'jsdom',
coverage: {
reporter: ['text', 'lcov'],
exclude: ['src/test/**', 'example/src/**'],
include: ['src/'],
exclude: ['src/test/**'],
},
},
}

0 comments on commit a9fe07f

Please sign in to comment.