From 0f481dd266461536c71de32a2d0afbedb9fea48f Mon Sep 17 00:00:00 2001 From: Fernando Isidro Luna Date: Sat, 5 Oct 2024 19:16:45 -0600 Subject: [PATCH] test: :construction: check if work setting pool using forks --- vitest.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index 4379954..c825884 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -11,9 +11,10 @@ export default defineConfig({ }, globalSetup: ['./tests/global_setup.ts'], poolOptions: { - threads: { - singleThread: true, + forks: { + singleFork: true, }, }, + pool: 'forks', }, });