47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
'use strict'
|
|
|
|
const os = require('node:os')
|
|
const { join } = require('node:path')
|
|
const { readFile } = require('node:fs').promises
|
|
const { watchFileCreated, file } = require('../helper')
|
|
const { test } = require('tap')
|
|
const pino = require('../../pino')
|
|
|
|
const { pid } = process
|
|
const hostname = os.hostname()
|
|
|
|
/**
|
|
* This file is packaged using pkg in order to test if transport-stream.js works in that context
|
|
*/
|
|
|
|
test('pino.transport with worker destination overridden by bundler and mjs transport', async ({ same, teardown }) => {
|
|
globalThis.__bundlerPathsOverrides = {
|
|
'pino-worker': join(__dirname, '..', '..', 'lib/worker.js')
|
|
}
|
|
|
|
const destination = file()
|
|
const transport = pino.transport({
|
|
targets: [
|
|
{
|
|
target: join(__dirname, '..', 'fixtures', 'ts', 'to-file-transport.es2017.cjs'),
|
|
options: { destination }
|
|
}
|
|
]
|
|
})
|
|
|
|
teardown(transport.end.bind(transport))
|
|
const instance = pino(transport)
|
|
instance.info('hello')
|
|
await watchFileCreated(destination)
|
|
const result = JSON.parse(await readFile(destination))
|
|
delete result.time
|
|
same(result, {
|
|
pid,
|
|
hostname,
|
|
level: 30,
|
|
msg: 'hello'
|
|
})
|
|
|
|
globalThis.__bundlerPathsOverrides = undefined
|
|
})
|