mirror of
https://github.com/nvms/prsm.git
synced 2025-12-13 07:20:52 +00:00
16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: true,
|
|
maxThreads: 1,
|
|
},
|
|
forks: {
|
|
singleFork: true,
|
|
},
|
|
},
|
|
},
|
|
});
|