mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
import { unitTest, assertEquals } from "./test_util.ts";
|
||
|
|
||
|
unitTest(
|
||
|
{
|
||
|
ignore: Deno.build.os === "windows",
|
||
|
},
|
||
|
function umaskSuccess(): void {
|
||
|
const prevMask = Deno.umask(0o020);
|
||
|
const newMask = Deno.umask(prevMask);
|
||
|
const finalMask = Deno.umask();
|
||
|
assertEquals(newMask, 0o020);
|
||
|
assertEquals(finalMask, prevMask);
|
||
|
}
|
||
|
);
|