diff options
Diffstat (limited to 'cli/js/tests/dir_test.ts')
-rw-r--r-- | cli/js/tests/dir_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/tests/dir_test.ts b/cli/js/tests/dir_test.ts index 3686471f1..dc05d9564 100644 --- a/cli/js/tests/dir_test.ts +++ b/cli/js/tests/dir_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { unitTest, assert, assertEquals } from "./test_util.ts"; -unitTest(function dirCwdNotNull(): void { +unitTest({ perms: { read: true } }, function dirCwdNotNull(): void { assert(Deno.cwd() != null); }); |