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 44b38bb commit e82b452Copy full SHA for e82b452
test/parallel/test-child-process-stdin.js
@@ -9,8 +9,8 @@ cat.stdin.write('hello');
9
cat.stdin.write(' ');
10
cat.stdin.write('world');
11
12
-assert.ok(cat.stdin.writable);
13
-assert.ok(!cat.stdin.readable);
+assert.strictEqual(cat.stdin.writable, true);
+assert.strictEqual(cat.stdin.readable, false);
14
15
cat.stdin.end();
16
0 commit comments