summaryrefslogtreecommitdiff
path: root/tests/unit/sync_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-08-16 00:30:06 +0100
committerGitHub <noreply@github.com>2024-08-15 23:30:06 +0000
commitb6c74aab240430fa70c057be825ce766d2314e02 (patch)
tree6e2b3f690411f41de77972339f4145d2c85b31b8 /tests/unit/sync_test.ts
parenta58494483a2c618636697e05f9c799b03e405056 (diff)
Revert "test: run unit tests with DENO_FUTURE=1 (#24400)" (#25060)
This reverts commit 22a834ff5b4b312b8f91be8991f2b495d49fad2f. Appears this commit might have broken tests on `main`.
Diffstat (limited to 'tests/unit/sync_test.ts')
-rw-r--r--tests/unit/sync_test.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/sync_test.ts b/tests/unit/sync_test.ts
index 6112f3520..93eb4f0b0 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, DENO_FUTURE } from "./test_util.ts";
+import { assertEquals } from "./test_util.ts";
Deno.test(
- { ignore: DENO_FUTURE, permissions: { read: true, write: true } },
+ { 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(
- { ignore: DENO_FUTURE, permissions: { read: true, write: true } },
+ { 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(
- { ignore: DENO_FUTURE, permissions: { read: true, write: true } },
+ { 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(
- { ignore: DENO_FUTURE, permissions: { read: true, write: true } },
+ { permissions: { read: true, write: true } },
async function fsyncSuccess() {
const filename = (await Deno.makeTempDir()) + "/test_fsync.txt";
using file = await Deno.open(filename, {