diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2022-08-26 23:39:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 23:39:05 +0900 |
commit | 9b324b1cf4a8ee4159abb041e72a8885a28e92a3 (patch) | |
tree | 37cd36144b77915b17975719fdaa1862ff8e0bcb /cli/tests/integration/npm_tests.rs | |
parent | f583a7ebf4f7c4ef21061fba802f80fd2d5299e7 (diff) |
fix(ext/node): fix global in node env (#15622)
Diffstat (limited to 'cli/tests/integration/npm_tests.rs')
-rw-r--r-- | cli/tests/integration/npm_tests.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/integration/npm_tests.rs b/cli/tests/integration/npm_tests.rs index 582284c36..6e47da8f6 100644 --- a/cli/tests/integration/npm_tests.rs +++ b/cli/tests/integration/npm_tests.rs @@ -54,6 +54,13 @@ itest!(cjs_local_global_decls { http_server: true, }); +itest!(compare_globals { + args: "run --allow-read --unstable npm/compare_globals/main.js", + output: "npm/compare_globals/main.out", + envs: env_vars(), + http_server: true, +}); + itest!(dynamic_import { args: "run --allow-read --unstable npm/dynamic_import/main.ts", output: "npm/dynamic_import/main.out", |