Skip to content

Commit

Permalink
fix: don't run tests in debug mode
Browse files Browse the repository at this point in the history
Fixes #570
Fixes #569
  • Loading branch information
sheremet-va committed Jan 14, 2025
1 parent 92ea210 commit 3f22728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/child_process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3f22728

Please sign in to comment.