10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
watch: false,
|
|
testTimeout: 10_000,
|
|
},
|
|
})
|