mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-01 21:20:15 +00:00
8 lines
198 B
TypeScript
8 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,
|
|
},
|
|
})
|