summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/testdata/process_exit.ts
blob: 57351c087039726d947a5423ed3e8407467f6fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import process from "node:process";

//deno-lint-ignore no-undef
process.on("exit", () => {
  console.log(1);
});

function unexpected() {
  console.log(null);
}
//deno-lint-ignore no-undef
process.on("exit", unexpected);
//deno-lint-ignore no-undef
process.removeListener("exit", unexpected);

//deno-lint-ignore no-undef
process.on("exit", () => {
  console.log(2);
});