You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
438 B
23 lines
438 B
var it = require('it-is').style('colour') |
|
, split = require('..') |
|
|
|
exports ['maximum buffer limit'] = function (test) { |
|
var s = split(JSON.parse, null, { |
|
maxLength: 2 |
|
}) |
|
, caughtError = false |
|
, rows = [] |
|
|
|
s.on('error', function (err) { |
|
caughtError = true |
|
}) |
|
|
|
s.on('data', function (row) { rows.push(row) }) |
|
|
|
s.write('{"a":1}\n{"') |
|
s.write('{ "') |
|
it(caughtError).equal(true) |
|
|
|
s.end() |
|
test.done() |
|
}
|
|
|