summaryrefslogtreecommitdiff
path: root/tests/specs/test/exit_code2/main.js
blob: 2e6398a580617f1995c26070250c4074392bb040 (plain)
1
2
3
4
5
6
7
Deno.test("Deno.exitCode", () => {
  Deno.exitCode = 5;
  throw new Error("");
});

Deno.test("success", () => {
});