mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
10 lines
345 B
JavaScript
10 lines
345 B
JavaScript
import { discoverProducerTests, summarizeTests } from "./test-classification.mjs";
|
|
|
|
try {
|
|
const tests = discoverProducerTests();
|
|
console.log(JSON.stringify({ event: "producer_tests_classified", ...summarizeTests(tests) }));
|
|
} catch (error) {
|
|
console.error(error instanceof Error ? error.message : String(error));
|
|
process.exitCode = 1;
|
|
}
|