summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-readable-invalid-chunk.js
blob: d845b6114c5f9402ea5982cb7fe7f6397bed4b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';
require('../common');
const stream = require('stream');
const assert = require('assert');

const readable = new stream.Readable({
  read: () => {}
});

assert.throws(() => readable.push([]), /Invalid non-string\/buffer chunk/);
assert.throws(() => readable.push({}), /Invalid non-string\/buffer chunk/);
assert.throws(() => readable.push(0), /Invalid non-string\/buffer chunk/);