summaryrefslogtreecommitdiff
path: root/tests/specs/test/exit_sanitizer/exit_sanitizer.ts
blob: 186406a9d9c581a0b7c28dafc47660734b646b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
Deno.test("exit(0)", function () {
  Deno.exit(0);
});

Deno.test("exit(1)", function () {
  Deno.exit(1);
});

Deno.test("exit(2)", function () {
  Deno.exit(2);
});