15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['tests/integration/**/*.test.ts'],
|
|
testTimeout: 30000,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'~': new URL('./app', import.meta.url).pathname,
|
|
},
|
|
},
|
|
})
|