summaryrefslogtreecommitdiff
path: root/cli/tests/unit/umask_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/umask_test.ts')
-rw-r--r--cli/tests/unit/umask_test.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/cli/tests/unit/umask_test.ts b/cli/tests/unit/umask_test.ts
deleted file mode 100644
index 0e97f0d35..000000000
--- a/cli/tests/unit/umask_test.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { assertEquals } from "./test_util.ts";
-
-Deno.test(
- {
- ignore: Deno.build.os === "windows",
- },
- function umaskSuccess() {
- const prevMask = Deno.umask(0o020);
- const newMask = Deno.umask(prevMask);
- const finalMask = Deno.umask();
- assertEquals(newMask, 0o020);
- assertEquals(finalMask, prevMask);
- },
-);