mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
16 lines
229 B
TypeScript
16 lines
229 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
pool: 'forks',
|
|
poolOptions: {
|
|
forks: {
|
|
isolate: false,
|
|
},
|
|
},
|
|
expect: {
|
|
requireAssertions: true,
|
|
}
|
|
},
|
|
})
|