Files
Kmake/test/fixtures/test-runner/node_modules/reporter-esm/index.mjs
2026-05-26 23:36:42 -07:00

9 lines
252 B
JavaScript

export default async function * customReporter(source) {
const counters = {};
for await (const event of source) {
counters[event.type] = (counters[event.type] ?? 0) + 1;
}
yield "package: reporter-esm";
yield JSON.stringify(counters);
};