1
0
Fork 0
firefox/testing/web-platform/tests/streams/piping/transform-streams.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
518 B
JavaScript

// META: global=window,worker,shadowrealm
'use strict';
promise_test(() => {
const rs = new ReadableStream({
start(c) {
c.enqueue('a');
c.enqueue('b');
c.enqueue('c');
c.close();
}
});
const ts = new TransformStream();
const ws = new WritableStream();
return rs.pipeThrough(ts).pipeTo(ws).then(() => {
const writer = ws.getWriter();
return writer.closed;
});
}, 'Piping through an identity transform stream should close the destination when the source closes');