Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update comments
  • Loading branch information
mertcanaltin committed Jan 4, 2026
commit 2828147db8ab06b0d2b5a87bee95e0990ede38a3
10 changes: 5 additions & 5 deletions test/parallel/test-whatwg-webstreams-internal-pipe.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const {
JSStream,
} = internalBinding('js_stream');

// Test 1: kStreamBase marker is attached to ReadableStream
// kStreamBase marker is attached to ReadableStream
{
const stream = new JSStream();
const readable = newReadableStreamFromStreamBase(stream);
Expand All @@ -40,7 +40,7 @@ const {
stream.emitEOF();
}

// Test 2: kStreamBase marker is attached to WritableStream
// kStreamBase marker is attached to WritableStream
{
const stream = new JSStream();
stream.onwrite = common.mustNotCall();
Expand All @@ -54,7 +54,7 @@ const {
writable.close();
}

// Test 3: Regular JS streams don't have kStreamBase
// Regular JS streams don't have kStreamBase
{
const { ReadableStream, WritableStream } = require('stream/web');

Expand All @@ -76,7 +76,7 @@ const {
rs.pipeTo(ws).then(common.mustCall());
}

// Test 4: Mixed streams (one internal, one JS) use standard path
// Mixed streams (one internal, one JS) use standard path
{
const stream = new JSStream();
stream.onshutdown = (req) => req.oncomplete();
Expand Down Expand Up @@ -104,7 +104,7 @@ const {
}));
}

// Test 5: Verify kStreamBase is the correct symbol from util
// Verify kStreamBase is the correct symbol from util
{
const {
kStreamBase: kStreamBase2,
Expand Down
Loading