Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
export default defineConfig({
|
|
test: {
|
|
root: __dirname,
|
|
include: ['test/**/*.{test,spec}.?(c|m)[jt]s?(x)'],
|
|
testTimeout: 1000 * 29,
|
|
},
|
|
})
|