diff --git a/cli/tests/unit_node/fs_test.ts b/cli/tests/unit_node/fs_test.ts index 67f4c2378c7962..11114823f252ed 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 01ac9912e427eb..38a7a2bfb64c76 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 15f23819483cb9..ffdb862d8ce1e1 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;