diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-29 01:09:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 00:09:06 +0000 |
commit | 52fb6582e7121a6c253c83b95e9706d236262cbe (patch) | |
tree | 2c42c2e6b533d8081c31e8829862ed16a6b2f5c4 /tests/integration/node_unit_tests.rs | |
parent | 57541b48ba0402a8ff4a1e30c7e326fe9edab241 (diff) |
test: run `node_unit_tests` with `DENO_FUTURE=1` (#25285)
This is blocking https://github.com/denoland/deno/pull/25213.
Turns out a bunch of FS APIs are completely broken because they
use RIDs (resource IDs) instead of FDs (file descriptors).
Diffstat (limited to 'tests/integration/node_unit_tests.rs')
-rw-r--r-- | tests/integration/node_unit_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/integration/node_unit_tests.rs b/tests/integration/node_unit_tests.rs index dfe15a11c..b44cd629a 100644 --- a/tests/integration/node_unit_tests.rs +++ b/tests/integration/node_unit_tests.rs @@ -107,6 +107,7 @@ fn node_unit_test(test: String) { let mut deno = util::deno_cmd() .current_dir(util::root_path()) + .env("DENO_FUTURE", "1") .arg("test") .arg("--config") .arg(deno_config_path()) |