diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-02-16 10:49:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 10:49:42 -0700 |
commit | c92717a1a43d31951cd8a1161afb766ef339aa21 (patch) | |
tree | 48a8fa58531d525c87824d55a6a934e42037815e /tests/unit_node/process_test.ts | |
parent | 88d7c50cd559b9fd0189d2a2c1df6e2f1b790ddb (diff) |
chore(cli): pre-factor the sanitizer tests (#22436)
Moving tests around so that we can make #22413 smaller
Diffstat (limited to 'tests/unit_node/process_test.ts')
-rw-r--r-- | tests/unit_node/process_test.ts | 5 |
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); |