diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-09-09 19:37:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-09 19:37:01 +0100 |
| commit | f75a17521df053218c0c2b5fb93c5354f9c8f274 (patch) | |
| tree | 2f0916e2c9f3c3894b2dec01e712d544f7945a0d /Cargo.lock | |
| parent | 947865c05478fce0675fce93fd2811f93b703287 (diff) | |
fix(lsp): respect configured exclusions for testing APIs (#20427)
LSP testing APIs now obey the various file inclusion settings:
- Modules shown in the text explorer now respect the `exclude`,
`test.exclude` and `test.include` fields in `deno.json`, as well as
`deno.enablePaths` in VSCode settings.
- Modules with testing code lens now respect the `"exclude"`,
`test.exclude` and `test.include` fields in `deno.json`. Code lens
already respects `deno.enablePaths`.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7403b26dd..e199ec6f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1050,9 +1050,9 @@ dependencies = [ [[package]] name = "deno_config" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee6f80798a5460656fbbbcdbe6e7700878a6777739195a205e97a8e5fcd00baf" +checksum = "ed5999e360fec39bbfee5d85bac82c5f557ed93a58660bc255026a90796138c6" dependencies = [ "anyhow", "deno_semver", |
