nodejs/test/parallel/test-stream-readable-with-unimplemented-_read.js

14 lines
338 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const { Readable } = require('stream');
const readable = new Readable();
readable.read();
readable.on('error', common.expectsError({
code: 'ERR_METHOD_NOT_IMPLEMENTED',
name: 'Error',
message: 'The _read() method is not implemented'
}));
readable.on('close', common.mustCall());