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 24f045d commit eafdeabCopy full SHA for eafdeab
test/parallel/test-fs-read-stream-fd.js
@@ -35,6 +35,8 @@ fs.writeFileSync(file, input);
35
const fd = fs.openSync(file, 'r');
36
const stream = fs.createReadStream(null, { fd: fd, encoding: 'utf8' });
37
38
+assert.strictEqual(stream.path, undefined);
39
+
40
stream.on('data', common.mustCallAtLeast((data) => {
41
output += data;
42
}));
0 commit comments