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 4309567 commit f5df9a2Copy full SHA for f5df9a2
test/integration/v2/stream.test.ts
@@ -395,9 +395,9 @@ describe("streams", () => {
395
396
// Create a moderate backpressure stream
397
let processedChunks = 0;
398
- const outputStream = new stream.Transform({
+ const outputStream = new stream.Writable({
399
highWaterMark: 1,
400
- transform(chunk, encoding, callback) {
+ write(chunk, encoding, callback) {
401
processedChunks++;
402
403
// Simulate occasional slow processing with minimal delays
0 commit comments