Skip to content

Commit 9ef5243

Browse files
committed
fix: removed spurious console.log inside test setup
1 parent 7c688ec commit 9ef5243

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

tests/setup.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
// // @ts-ignore windows
2-
// process.stdout._handle.setBlocking(true);
3-
// // @ts-ignore windows
4-
// process.stderr._handle.setBlocking(true);
5-
6-
console.log('SETUP');
7-
8-
console.log(process.stdout.isTTY);
9-
console.log(process.stderr.isTTY);
10-
11-
// @ts-ignore windows
12-
console.log(process.stdout._handle);
13-
// @ts-ignore windows
14-
console.log(process.stderr._handle);

tests/setupAfterEnv.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
console.log('SETUP AFTER ENV');
2-
console.log(process.stdout.isTTY);
3-
console.log(process.stderr.isTTY);
4-
// @ts-ignore windows
5-
console.log(process.stdout._handle);
6-
// @ts-ignore windows
7-
console.log(process.stderr._handle);
8-
91
// Default timeout per test
102
// some tests may take longer in which case you should specify the timeout
113
// explicitly for each test by using the third parameter of test function

0 commit comments

Comments
 (0)