mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
4c2380af5c
Adds two test files: "cli/tests/unit_node/process_test.ts" and "cli/tests/unit_node/child_process_test.ts" --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
19 lines
372 B
TypeScript
19 lines
372 B
TypeScript
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);
|
|
});
|