17 lines
283 B
TypeScript
17 lines
283 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
pool: 'threads',
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: true,
|
|
},
|
|
},
|
|
fileParallelism: false,
|
|
isolate: false,
|
|
maxWorkers: 1,
|
|
minWorkers: 1,
|
|
},
|
|
});
|