Skip to content

Commit 1597181

Browse files
committed
add vitest config
1 parent 6545ee3 commit 1597181

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

vitest.config.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { defineConfig } from 'vitest/config';
2+
3+
export default defineConfig({
4+
test: {
5+
coverage: {
6+
include: ['src'],
7+
},
8+
include: ['test/**'],
9+
exclude: ['test/testutils.ts'],
10+
},
11+
});

0 commit comments

Comments
 (0)