diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-09-18 10:46:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 10:46:44 -0400 |
commit | 0709c051f83c181206f6653396f5428df66ed74f (patch) | |
tree | 9360ce6cfc2c3f3f53a8a7af0f9d3bdc9e1ee553 /cli/tests/integration/run_tests.rs | |
parent | 4fcd9a0de815a756e5f173e1bc1f84d90ba39ec7 (diff) |
feat(unstable): package manager (#20517)
Adds an experimental unstable built-in package manager to Deno, but it is
currently not usable because the registry infrastructure hasn't been
setup and it points to a non-existent url by default. The default
registry url can be configured via the `DENO_REGISTRY_URL` environment
variable.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 0a5e86b1f..1dff1f6d6 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -15,7 +15,7 @@ use trust_dns_client::serialize::txt::Lexer; use trust_dns_client::serialize::txt::Parser; use util::assert_contains; use util::assert_not_contains; -use util::env_vars_for_npm_tests_no_sync_download; +use util::env_vars_for_npm_tests; use util::PathRef; use util::TestContext; use util::TestContextBuilder; @@ -3122,7 +3122,7 @@ itest!(package_json_auto_discovered_for_local_script_arg { cwd: Some("run/with_package_json/"), // prevent creating a node_modules dir in the code directory copy_temp_dir: Some("run/with_package_json/"), - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), http_server: true, }); @@ -3134,7 +3134,7 @@ itest!( output: "run/with_package_json/with_stop/main.out", cwd: Some("run/with_package_json/"), copy_temp_dir: Some("run/with_package_json/"), - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), http_server: true, exit_code: 1, } @@ -3165,7 +3165,7 @@ itest!( output: "run/with_package_json/no_deno_json/sub_dir/main.out", cwd: Some("run/with_package_json/no_deno_json/sub_dir"), copy_temp_dir: Some("run/with_package_json/no_deno_json/"), - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), http_server: true, } ); @@ -3175,7 +3175,7 @@ itest!(package_json_auto_discovered_for_npm_binary { output: "run/with_package_json/npm_binary/main.out", cwd: Some("run/with_package_json/npm_binary/"), copy_temp_dir: Some("run/with_package_json/"), - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), http_server: true, }); @@ -4565,21 +4565,21 @@ fn permission_prompt_strips_ansi_codes_and_control_chars() { itest!(node_builtin_modules_ts { args: "run --quiet --allow-read run/node_builtin_modules/mod.ts hello there", output: "run/node_builtin_modules/mod.ts.out", - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), exit_code: 0, }); itest!(node_builtin_modules_js { args: "run --quiet --allow-read run/node_builtin_modules/mod.js hello there", output: "run/node_builtin_modules/mod.js.out", - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), exit_code: 0, }); itest!(node_prefix_missing { args: "run --quiet run/node_prefix_missing/main.ts", output: "run/node_prefix_missing/main.ts.out", - envs: env_vars_for_npm_tests_no_sync_download(), + envs: env_vars_for_npm_tests(), exit_code: 1, }); |