PR-URL: https://github.com/nodejs/node/pull/45027 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
19 lines
281 B
JavaScript
19 lines
281 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const {
|
|
pipeline,
|
|
PassThrough
|
|
} = require('stream');
|
|
|
|
|
|
async function runTest() {
|
|
await pipeline(
|
|
'',
|
|
new PassThrough({ objectMode: true }),
|
|
common.mustCall(() => { })
|
|
);
|
|
}
|
|
|
|
runTest().then(common.mustCall());
|