mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
// vitest.config.ts or vitest.config.js
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
setupFiles: ['./test/setup/setup-tests.ts'],
|
|
},
|
|
})
|