Lines Matching +full:no +full:- +full:console
65 for await (const d of readable) { // eslint-disable-line no-unused-vars
85 console.log('read without for..await');
100 (item, i) => assert.strictEqual(item.value, 'hello-' + i), 5));
103 readable.push('hello-0');
104 readable.push('hello-1');
105 readable.push('hello-2');
106 readable.push('hello-3');
107 readable.push('hello-4');
115 console.log('read without for..await deferred');
128 readable.push('hello-0');
129 readable.push('hello-1');
130 readable.push('hello-2');
135 (item) => assert.strictEqual(item.value, 'hello-' + k++), 3));
142 readable.push('hello-3');
143 readable.push('hello-4');
148 (item) => assert.strictEqual(item.value, 'hello-' + k++), 2));
155 console.log('read without for..await with errors');
174 readable.push('hello-0');
175 readable.push('hello-1');
176 readable.push('hello-2');
181 (item, i) => assert.strictEqual(item.value, 'hello-' + i), max));
200 console.log('call next() after error');
212 console.log('read object mode');
235 console.log('destroy sync');
245 // eslint-disable-next-line no-unused-vars
254 console.log('destroy async');
273 // eslint-disable-next-line no-unused-vars
286 console.log('destroyed by throw');
309 console.log('destroyed sync after push');
335 console.log('destroyed will not deadlock');
351 console.log('push async');
376 console.log('push binary async');
406 console.log('.next() on destroyed stream');
409 // no-op
420 console.log('.next() on pipelined stream');
423 // no-op
443 console.log('iterating on an ended stream completes');
452 // eslint-disable-next-line no-unused-vars
455 // eslint-disable-next-line no-unused-vars
461 console.log('destroy mid-stream does not error');
470 // eslint-disable-next-line no-unused-vars
477 console.log('readable side of a transform stream pushes null');
501 console.log('all next promises must be resolved on end');
517 console.log('all next promises must be resolved on destroy');
533 console.log('all next promises must be resolved on destroy with error');
586 // Don't destroy if no auto destroy.
597 for await (const chunk of r) {} // eslint-disable-line no-unused-vars
602 // Destroy if no auto destroy and premature break.
612 for await (const chunk of r) { // eslint-disable-line no-unused-vars
630 for await (const chunk of r) {} // eslint-disable-line no-unused-vars
720 // eslint-disable-next-line no-unused-vars