Tiny helper function to read JSON fixtures for tests
npm install @zentered/read-fixtures
import { test, mock } from 'node:test'
import assert from 'node:assert/strict'
import readFixture from '@zentered/read-fixtures'
test('process events', async () => {
const mockData = await readFixture('log_stream.json')
...
})