summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/testdata/process_really_exit.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit_node/testdata/process_really_exit.ts')
-rw-r--r--cli/tests/unit_node/testdata/process_really_exit.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/unit_node/testdata/process_really_exit.ts b/cli/tests/unit_node/testdata/process_really_exit.ts
deleted file mode 100644
index 16f30b33d..000000000
--- a/cli/tests/unit_node/testdata/process_really_exit.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import process from "node:process";
-
-//deno-lint-ignore no-undef
-// @ts-ignore - Node typings don't even have this because it's
-// been deprecated for 4 years. But it's used in `signal-exit`,
-// which in turn is used in `node-tap`.
-process.reallyExit = function () {
- console.info("really exited");
-};
-process.exit();