11 lines
174 B
JavaScript
Raw Normal View History

/* global test */
const pino = require('../../pino')
test('transport should work in jest', function () {
pino({
transport: {
target: 'pino-pretty'
}
})
})