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 4b78883 commit 4afbe87Copy full SHA for 4afbe87
vitest.config.ts
@@ -1,11 +1,14 @@
1
-import { defineConfig } from 'vitest/config'
+import { configDefaults, defineConfig } from 'vitest/config'
2
3
export default defineConfig({
4
test: {
5
include: ['src/**/*.spec.ts'],
6
+ exclude: [...configDefaults.exclude],
7
testTimeout: 30000,
8
+ retry: 3,
9
coverage: {
10
enabled: false, // TODO: enable coverage once all tests are passing
11
+ include: ['src/common', 'src/modules'],
12
provider: 'v8',
13
thresholds: {
14
statements: 100,
0 commit comments