We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6714e4 commit b4a9938Copy full SHA for b4a9938
lib/reporters/base.js
@@ -25,7 +25,7 @@ exports = module.exports = Base;
25
* Check if both stdio streams are associated with a tty.
26
*/
27
28
-var isatty = Boolean(process.stdout.isTTY) && Boolean(process.stderr.isTTY);
+var isatty = process.stdout.isTTY && process.stderr.isTTY;
29
30
/**
31
* Save log references to avoid tests interfering (see GH-3604).
0 commit comments