1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

fix(ext/node): fix node stream (#17874)

This commit is contained in:
Yoshiya Hinosawa 2023-02-22 23:30:58 +09:00 committed by GitHub
parent 4afa150f21
commit a2d942a778
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -575,7 +575,7 @@
"test-stream-destroy-event-order.js",
"test-stream-duplex-destroy.js",
"test-stream-duplex-end.js",
"TODO:test-stream-duplex-from.js",
"test-stream-duplex-from.js",
"test-stream-duplex-props.js",
"test-stream-duplex-readable-end.js",
"test-stream-duplex-writable-finished.js",
@ -603,9 +603,9 @@
"test-stream-pipe-same-destination-twice.js",
"test-stream-pipe-unpipe-streams.js",
"test-stream-pipe-without-listenerCount.js",
"TODO:test-stream-pipeline-async-iterator.js",
"TODO:test-stream-pipeline-queued-end-in-destroy.js",
"TODO:test-stream-pipeline-with-empty-string.js",
"test-stream-pipeline-async-iterator.js",
"test-stream-pipeline-queued-end-in-destroy.js",
"test-stream-pipeline-with-empty-string.js",
"test-stream-push-strings.js",
"test-stream-readable-aborted.js",
"test-stream-readable-add-chunk-during-data.js",

File diff suppressed because one or more lines are too long