This commit is contained in:
davidmarkclements 2016-12-12 10:18:45 -05:00
Родитель e1d8d8b8d4
Коммит d15a8418e8
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -341,6 +341,18 @@ test('correctly strip undefined when returned from toJSON', function (t) {
instance.fatal({test: {toJSON: function () { return undefined }}})
})
test('correctly handles null', function (t) {
t.plan(1)
var instance = pino(sink(function (obj, enc, cb) {
t.is(obj.msg, 'null "test"')
t.end()
cb()
}))
instance.info(null, 'test')
})
test('correctly support node v4+ stderr', function (t) {
t.plan(1)