summaryrefslogtreecommitdiff
path: root/cli/tests/run_tests.rs
AgeCommit message (Collapse)Author
2022-12-17chore: update to Rust 1.66.0 (#17078)linbingquan
2022-12-08feat(cli): support configuring the lock file in the config file (#16781)Roj
This allows the user to completely opt out from the lock file or rename it without having to use `--no-lock` and/or `--lock` in all commands. ## Don’t Use Lock File ```json { "lock": false } ``` ## Use Lock File With a Different Name ```json { "lock": "deno2.lock" } ``` The CLI args `--no-lock` and `--lock` will always override what is in the config file. Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
2022-11-26tests: move integration tests to separate modules (#16816)Bartek Iwańczuk