This commit is contained in:
Cheng Zhao 2016-04-05 17:08:27 +09:00
Родитель fa27120429
Коммит c562b24df8
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -196,6 +196,11 @@ describe('node feature', function () {
assert.equal(b.toString(), 'Jøhänñéß')
assert.equal(Buffer.byteLength(p.innerText), 13)
})
it('does not crash when creating large Buffers', function () {
new Buffer(new Array(4096).join(' '));
new Buffer(new Array(4097).join(' '));
})
})
describe('process.stdout', function () {