Skip to content

Commit

Permalink
reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Apr 24, 2024
1 parent 712ae2e commit 44b15f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/deno/os.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {assertEquals} from "../../deps.test.ts";
import {osWindows, osMac, osLinux} from "../../src/deno/os.ts";

Deno.test({
ignore: Deno.build.os === "windows",
ignore: Deno.build.os !== "windows",
name: "OS: Windows",
fn(){
assertEquals(osWindows, true);
Expand All @@ -12,7 +12,7 @@ Deno.test({
});

Deno.test({
ignore: Deno.build.os === "darwin",
ignore: Deno.build.os !== "darwin",
name: "OS: Mac",
fn(){
assertEquals(osWindows, false);
Expand All @@ -22,7 +22,7 @@ Deno.test({
});

Deno.test({
ignore: Deno.build.os === "linux",
ignore: Deno.build.os !== "linux",
name: "OS: Linux",
fn(){
assertEquals(osWindows, false);
Expand Down

0 comments on commit 44b15f5

Please sign in to comment.