Skip to content

Commit

Permalink
test: fix vitest cov
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Mar 20, 2024
1 parent eb45325 commit f0e76d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ export default defineConfig({
},
test: {
include: ['**/tests/*.spec.*'],
exclude: ['**/coverage/**'],
globals: true,
setupFiles: './tests/setup.ts',
environment: 'jsdom',
coverage: {
exclude: ['**/docs/**', '**/__mocks__/**'],
exclude: ['**/docs/**', '**/__mocks__/**', '**/coverage/**'],
},
},
});

0 comments on commit f0e76d5

Please sign in to comment.