🧪 Added Vitest configuration with coverage
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
export default defineConfig({
|
||||
test: {
|
||||
coverage: {
|
||||
reporter: ['text', 'html', 'lcov'],
|
||||
include: ['src/**/*.ts'],
|
||||
exclude: ['src/**/*.test.ts', 'test/**'],
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user