summaryrefslogtreecommitdiff
path: root/tests/unit_node/process_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_node/process_test.ts')
-rw-r--r--tests/unit_node/process_test.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit_node/process_test.ts b/tests/unit_node/process_test.ts
index bc2ff640e..bff3c6641 100644
--- a/tests/unit_node/process_test.ts
+++ b/tests/unit_node/process_test.ts
@@ -226,6 +226,7 @@ Deno.test({
},
});
+// Only supported on Windows (but won't throw anywhere)
Deno.test({
name: "process.on SIGBREAK doesn't throw",
fn() {
@@ -235,9 +236,9 @@ Deno.test({
},
});
+// Not supported on Windows (but won't throw anywhere)
Deno.test({
- name: "process.on SIGTERM doesn't throw on windows",
- ignore: Deno.build.os !== "windows",
+ name: "process.on SIGTERM doesn't throw",
fn() {
const listener = () => {};
process.on("SIGTERM", listener);