Assert read value instead of exception

This commit is contained in:
Kevin Sawicki 2016-09-07 14:51:05 -07:00
Родитель 28b33074cf
Коммит d76c970da6
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -247,10 +247,8 @@ describe('node feature', function () {
})
})
it('does not throw an exception when calling read()', function () {
assert.doesNotThrow(function () {
assert.equal(process.stdin.read(), null)
})
it('returns null when read from', function () {
assert.equal(process.stdin.read(), null)
})
})