mirror of
https://github.com/screenci/screenci.git
synced 2026-09-19 08:57:46 +08:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
pool: 'forks',
|
|
execArgv: ['--max-old-space-size=8192'],
|
|
},
|
|
})
|