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.
24 lines
438 B
24 lines
438 B
2 years ago
|
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()
|
||
|
}
|