1 2 3 4 5 6 7 8
Deno.test("bar 1", () => {}); Deno.test("bar 2", () => { throw new Error("bar 2"); }); Deno.test("bar 3", () => { throw new Error("bar 3 message"); });