blob: 8818f38e8596f2b1f9d24c6f5c1b98d34b0f8c50 [file] [edit]
'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(() => {}));