We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218ae7b commit 804812cCopy full SHA for 804812c
vitest.config.ts
@@ -1,11 +1,12 @@
1
-import { defineConfig } from 'vitest/config';
+import { defineConfig, coverageConfigDefaults } from 'vitest/config';
2
3
export default defineConfig({
4
test: {
5
globals: true,
6
reporters: process.env.GITHUB_ACTIONS ? ['dot', 'github-actions'] : ['dot'],
7
coverage: {
8
reporter: ['text-summary', 'lcovonly'],
9
+ exclude: ['scripts/**', ...coverageConfigDefaults.exclude],
10
},
11
12
});
0 commit comments