1 2 3 4 5 6 7 8
import "./main.ts"; Deno.bench("bench", () => { const testing = 1 + 2; if (testing !== 3) { throw "FAIL"; } });