From 3f22728962b3f019ce5abe8b016717e363138ba8 Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Tue, 14 Jan 2025 06:39:40 +0100 Subject: [PATCH] fix: don't run tests in debug mode Fixes #570 Fixes #569 --- src/api/child_process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/child_process.ts b/src/api/child_process.ts index 78a89f4..3c0feb6 100644 --- a/src/api/child_process.ts +++ b/src/api/child_process.ts @@ -67,7 +67,7 @@ export async function createVitestProcess(pkg: VitestPackage) { vitest.on('exit', onExit) - waitForWsResolvedMeta(wss, pkg, true, 'child_process') + waitForWsResolvedMeta(wss, pkg, false, 'child_process') .then(resolve, reject) .finally(() => { vitest.off('exit', onExit)