mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: [
|
|
'./coverage-test/*.test.ts',
|
|
],
|
|
},
|
|
})
|