diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-11-28 12:14:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 12:14:57 +0900 |
commit | 4ed9278bf4c47670d9dda61a0d6e07e82cba3992 (patch) | |
tree | 8802797d44bbc39c2e6333b69d4c8298bbef1919 /cli/tests | |
parent | 45fe3ccccfc2db9a969d2e6d258011ae96ee7d1e (diff) |
fix(ext/node): fix duplexify compatibility (#21346)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-stream-duplex-from.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-stream-duplex-from.js b/cli/tests/node_compat/test/parallel/test-stream-duplex-from.js index c6ab18179..c91a040c5 100644 --- a/cli/tests/node_compat/test/parallel/test-stream-duplex-from.js +++ b/cli/tests/node_compat/test/parallel/test-stream-duplex-from.js @@ -287,8 +287,6 @@ const { Blob } = require('buffer'); duplex.write('test'); } -/* -TODO(kt3k): Enable this test case { const through = new PassThrough({ objectMode: true }); @@ -309,7 +307,6 @@ TODO(kt3k): Enable this test case assert.strictEqual(res, 'foobar'); })).on('close', common.mustCall()); } -*/ function makeATestReadableStream(value) { return new ReadableStream({ |