mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Tests should be explicit regarding whether a promise is expected to settle, and the test should fail when the behavior does not meet expectations. PR-URL: https://github.com/nodejs/node/pull/60976 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Erick Wendel <erick.workspace@gmail.com>
30 lines
820 B
JavaScript
30 lines
820 B
JavaScript
/* eslint-disable node-core/require-common-first, require-yield */
|
|
'use strict';
|
|
const { pipeline } = require('node:stream/promises');
|
|
{
|
|
// Ensure that async iterators can act as readable and writable streams
|
|
async function* myCustomReadable() {
|
|
yield 'Hello';
|
|
yield 'World';
|
|
}
|
|
|
|
const messages = [];
|
|
async function* myCustomWritable(stream) {
|
|
for await (const chunk of stream) {
|
|
messages.push(chunk);
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
await pipeline(
|
|
myCustomReadable,
|
|
myCustomWritable,
|
|
);
|
|
// Importing here to avoid initializing streams
|
|
// eslint-disable-next-line node-core/must-call-assert
|
|
require('assert').deepStrictEqual(messages, ['Hello', 'World']);
|
|
})()
|
|
// eslint-disable-next-line node-core/must-call-assert
|
|
.then(require('../common').mustCall());
|
|
}
|