import { readFileSync } from "fs"; import { init, getTests } from "../index.mjs"; const filePath = process.argv[2]; if (!filePath) throw new Error("Usage: node node.mjs "); const buf = readFileSync(filePath); await init(); console.log(getTests(buf));