diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-28 12:35:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 12:35:23 -0400 |
commit | e0ca60e7707b5896ce67301aefd1de4a76e3cf75 (patch) | |
tree | 4c5357a3d3482b14cbc3773374aa885e1e29e90c /std/signal | |
parent | f7ab19b1b7ba929f7fd1550e2e4ecebe91cd9ea3 (diff) |
BREAKING: Use LLVM target triple for Deno.build (#4948)
Deno.build.os values have changed to correspond to standard LLVM target triples
"win" -> "windows"
"mac" -> "darwin"
Diffstat (limited to 'std/signal')
-rw-r--r-- | std/signal/test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/signal/test.ts b/std/signal/test.ts index 95529a6e2..c4d1bf3a7 100644 --- a/std/signal/test.ts +++ b/std/signal/test.ts @@ -5,7 +5,7 @@ import { signal, onSignal } from "./mod.ts"; test({ name: "signal() throws when called with empty signals", - ignore: Deno.build.os === "win", + ignore: Deno.build.os === "windows", fn() { assertThrows( () => { @@ -20,7 +20,7 @@ test({ test({ name: "signal() iterates for multiple signals", - ignore: Deno.build.os === "win", + ignore: Deno.build.os === "windows", fn: async (): Promise<void> => { // This prevents the program from exiting. const t = setInterval(() => {}, 1000); @@ -61,7 +61,7 @@ test({ test({ name: "onSignal() registers and disposes of event handler", - ignore: Deno.build.os === "win", + ignore: Deno.build.os === "windows", async fn() { // This prevents the program from exiting. const t = setInterval(() => {}, 1000); |