Buckets:
| 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 | |
| }) | |
Xet Storage Details
- Size:
- 1.23 kB
- Xet hash:
- b63a70abc796370e1d28b0bada12c48824ce9723185de86f6722ebd809fa0db1
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.