Skip to content

Commit

Permalink
fix: disable console interception during debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Jan 9, 2025
1 parent 90ac6c1 commit 3a9a73a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/worker/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ emitter.on('message', async function onMessage(message: any) {
data.meta,
data.debug
? {
disableConsoleIntercept: true,
fileParallelism: false,
testTimeout: Number.POSITIVE_INFINITY,
hookTimeout: Number.POSITIVE_INFINITY,
testTimeout: 0,
hookTimeout: 0,
}
: {},
)
Expand Down

0 comments on commit 3a9a73a

Please sign in to comment.