diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-26 22:58:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 23:58:28 +0200 |
commit | ba58628601057c6f996cbad287fcfbe353872368 (patch) | |
tree | 5642806d3aed1d46eab233511ef8a929cf0c51d3 /tests/unit/utime_test.ts | |
parent | 631d931973fbb7d2e01e1aeb87a33dd9d63ec38e (diff) |
Reland "test: run unit tests with DENO_FUTURE=1" (#25212)
Reverted in https://github.com/denoland/deno/pull/25060
Diffstat (limited to 'tests/unit/utime_test.ts')
-rw-r--r-- | tests/unit/utime_test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/utime_test.ts b/tests/unit/utime_test.ts index 49bc96623..d5b4b9269 100644 --- a/tests/unit/utime_test.ts +++ b/tests/unit/utime_test.ts @@ -6,11 +6,12 @@ import { assertEquals, assertRejects, assertThrows, + DENO_FUTURE, pathToAbsoluteFileUrl, } from "./test_util.ts"; Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, async function futimeSyncSuccess() { const testDir = await Deno.makeTempDir(); const filename = testDir + "/file.txt"; @@ -52,7 +53,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, function futimeSyncSuccess() { const testDir = Deno.makeTempDirSync(); const filename = testDir + "/file.txt"; |