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