nexmoe--vidbee
10 行
208 B
TypeScript
10 行
208 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['test/**/*.test.ts', '__integration__/**/*.test.ts'],
|
|
testTimeout: 5000
|
|
}
|
|
})
|