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