Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
fileParallelism: false,
|
|
globals: true,
|
|
hookTimeout: 60_000,
|
|
maxWorkers: 1,
|
|
},
|
|
})
|