diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-14 21:50:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 22:50:06 +0200 |
commit | 22a834ff5b4b312b8f91be8991f2b495d49fad2f (patch) | |
tree | 66ed83a0898396a950c040aa70192bda95f9102e /tests/unit/sync_test.ts | |
parent | f89b5311492377a3ac18d756dc8c8a309e2c9e8a (diff) |
test: run unit tests with DENO_FUTURE=1 (#24400)
This commit adds another test suite that runs all Deno unit tests
with `DENO_FUTURE=1` flag to ensure all APIs are working as
expected, once Deno 2 is released.
---------
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'tests/unit/sync_test.ts')
-rw-r--r-- | tests/unit/sync_test.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/sync_test.ts b/tests/unit/sync_test.ts index 93eb4f0b0..6112f3520 100644 --- a/tests/unit/sync_test.ts +++ b/tests/unit/sync_test.ts @@ -1,8 +1,8 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { assertEquals } from "./test_util.ts"; +import { assertEquals, DENO_FUTURE } from "./test_util.ts"; Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, function fdatasyncSyncSuccess() { const filename = Deno.makeTempDirSync() + "/test_fdatasyncSync.txt"; using file = Deno.openSync(filename, { @@ -18,7 +18,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, async function fdatasyncSuccess() { const filename = (await Deno.makeTempDir()) + "/test_fdatasync.txt"; using file = await Deno.open(filename, { @@ -35,7 +35,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, function fsyncSyncSuccess() { const filename = Deno.makeTempDirSync() + "/test_fsyncSync.txt"; using file = Deno.openSync(filename, { @@ -52,7 +52,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, write: true } }, + { ignore: DENO_FUTURE, permissions: { read: true, write: true } }, async function fsyncSuccess() { const filename = (await Deno.makeTempDir()) + "/test_fsync.txt"; using file = await Deno.open(filename, { |