diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-08-28 04:23:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 13:23:51 +1000 |
commit | efcabce1c117a2e0fed8604d887695a0a19a37ad (patch) | |
tree | 63606b73b8ded2bd4cb2955540f62a394a956b9c /tests/integration/npm_tests.rs | |
parent | 511d13abaf5cc98cc01250f7adc5edf15dc29276 (diff) |
feat: remove `--lock-write` flag (#25214)
This commit remove `--lock-write` that was deprecated in v1.45 release.
Closes https://github.com/denoland/deno/issues/24167.
---------
Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'tests/integration/npm_tests.rs')
-rw-r--r-- | tests/integration/npm_tests.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/integration/npm_tests.rs b/tests/integration/npm_tests.rs index 7f5145a42..2babcb21e 100644 --- a/tests/integration/npm_tests.rs +++ b/tests/integration/npm_tests.rs @@ -1209,7 +1209,6 @@ fn lock_file_missing_top_level_package() { #[test] fn lock_file_lock_write() { // https://github.com/denoland/deno/issues/16666 - // Ensure that --lock-write still adds npm packages to the lockfile let _server = http_server(); let deno_dir = util::new_deno_dir(); @@ -1396,7 +1395,6 @@ fn lock_file_lock_write() { let deno = util::deno_cmd_with_deno_dir(&deno_dir) .current_dir(temp_dir.path()) .arg("cache") - .arg("--lock-write") .arg("--quiet") .arg("npm:cowsay@1.5.0") .envs(env_vars_for_npm_tests()) |