summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/_fs/_fs_truncate_test.ts
diff options
context:
space:
mode:
authorMarvin Hagemeister <marvin@deno.com>2024-01-21 21:48:48 +0100
committerGitHub <noreply@github.com>2024-01-21 21:48:48 +0100
commit692738232b0668c35fcc572cb651fe543a8b87f9 (patch)
treec5762504e3f149febd66df405c3fa69479fb0966 /cli/tests/unit_node/_fs/_fs_truncate_test.ts
parent28f64171cb4292cc1e8cf59525b0b9990eff160f (diff)
fix(node/fs): promises not exporting fs constants (#21997)
<!-- Before submitting a PR, please read https://deno.com/manual/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docstrings - feat(doc): Handle nested reexports Examples of bad title: - fix #7123 - update docs - fix bugs 2. Ensure there is a related issue and it is referenced in the PR text. 3. Ensure there are tests that cover the changes. 4. Ensure `cargo test` passes. 5. Ensure `./tools/format.js` passes without changing files. 6. Ensure `./tools/lint.js` passes. 7. Open as a draft PR if your work is still in progress. The CI won't run all steps, but you can add '[ci]' to a commit message to force it to. 8. If you would like to run the benchmarks on the CI, add the 'ci-bench' label. --> We were missing the `constants` export in the promise `fs` API which is available in node. ```ts import { constants, promises } from "node:fs"; import { constants as fsPromiseConstants } from "node:fs/promises"; console.log(constants === promises.constants); // logs: true console.log(constants === fsPromiseConstants); // logs: true ``` Fixes https://github.com/denoland/deno/issues/21994
Diffstat (limited to 'cli/tests/unit_node/_fs/_fs_truncate_test.ts')
0 files changed, 0 insertions, 0 deletions