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 9e0d18f commit 2a78c33Copy full SHA for 2a78c33
test/parallel/test-repl-preview.js
@@ -7,8 +7,9 @@ const { Stream } = require('stream');
7
const { inspect } = require('util');
8
9
common.skipIfInspectorDisabled();
10
-common.skipIfDumbTerminal();
11
+// Ignore terminal settings. This is so the test can be run intact if TERM=dumb.
12
+process.env.TERM = '';
13
const PROMPT = 'repl > ';
14
15
class REPLStream extends Stream {
0 commit comments