summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/tests/unit_node/fs_test.ts24
-rw-r--r--ext/node/polyfills/fs.ts1
-rw-r--r--ext/node/polyfills/fs/promises.ts1
3 files changed, 24 insertions, 2 deletions
diff --git a/cli/tests/unit_node/fs_test.ts b/cli/tests/unit_node/fs_test.ts
index 67f4c2378..11114823f 100644
--- a/cli/tests/unit_node/fs_test.ts
+++ b/cli/tests/unit_node/fs_test.ts
@@ -1,9 +1,21 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { assert, assertThrows } from "../../../test_util/std/assert/mod.ts";
+import {
+ assert,
+ assertEquals,
+ assertThrows,
+} from "../../../test_util/std/assert/mod.ts";
import { join } from "node:path";
import { tmpdir } from "node:os";
-import { existsSync, mkdtempSync, readFileSync, writeFileSync } from "node:fs";
+import {
+ constants,
+ existsSync,
+ mkdtempSync,
+ promises,
+ readFileSync,
+ writeFileSync,
+} from "node:fs";
+import { constants as fsPromiseConstants } from "node:fs/promises";
import { pathToAbsoluteFileUrl } from "../unit/test_util.ts";
Deno.test(
@@ -80,3 +92,11 @@ Deno.test(
assert(!existsSync("bad_filename"));
},
);
+
+Deno.test(
+ "[node/fs/promises constants] is the same as from node:fs",
+ () => {
+ assertEquals(constants, fsPromiseConstants);
+ assertEquals(constants, promises.constants);
+ },
+);
diff --git a/ext/node/polyfills/fs.ts b/ext/node/polyfills/fs.ts
index 01ac9912e..38a7a2bfb 100644
--- a/ext/node/polyfills/fs.ts
+++ b/ext/node/polyfills/fs.ts
@@ -137,6 +137,7 @@ const {
const promises = {
access: accessPromise,
+ constants,
copyFile: copyFilePromise,
cp: cpPromise,
open: openPromise,
diff --git a/ext/node/polyfills/fs/promises.ts b/ext/node/polyfills/fs/promises.ts
index 15f238194..ffdb862d8 100644
--- a/ext/node/polyfills/fs/promises.ts
+++ b/ext/node/polyfills/fs/promises.ts
@@ -2,6 +2,7 @@
import { promises as fsPromises } from "node:fs";
export const access = fsPromises.access;
+export const constants = fsPromises.constants;
export const copyFile = fsPromises.copyFile;
export const open = fsPromises.open;
export const opendir = fsPromises.opendir;