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