Skip to content

Commit 45339e5

Browse files
committed
Revert "chore: turns out stdio for jest jobs are always pipes, try with force non-blocking"
This reverts commit 7c77eb4.
1 parent 7c77eb4 commit 45339e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/setup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-ignore windows
2-
process.stdout._handle.setBlocking(false);
2+
process.stdout._handle.setBlocking(true);
33
// @ts-ignore windows
4-
process.stderr._handle.setBlocking(false);
4+
process.stderr._handle.setBlocking(true);
55

66
console.log(process.stdout.isTTY);
77
console.log(process.stderr.isTTY);

0 commit comments

Comments
 (0)