diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-30 17:47:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 17:47:53 -0400 |
commit | 772201449713fbefad6c42b9ce545a5bb2d7499b (patch) | |
tree | 3a0e0448ca4116cd5ed4c1ba7dafb331ad6215e3 /cli/tests/integration/test_tests.rs | |
parent | 02e01b171f29f4f6c23d738b0756b7d9b7eaa020 (diff) |
fix(lsp): include all diagnosable documents on initialize (#17979)
Closes https://github.com/denoland/vscode_deno/issues/797
Closes https://github.com/denoland/deno/issues/11190
Closes https://github.com/denoland/vscode_deno/issues/811
Closes https://github.com/denoland/vscode_deno/issues/761
Closes https://github.com/denoland/vscode_deno/issues/585
Closes https://github.com/denoland/vscode_deno/issues/561
Closes https://github.com/denoland/vscode_deno/issues/410
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index 3a7f37db8..8e2404530 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -406,10 +406,9 @@ fn file_protocol() { .unwrap() .to_string(); - let context = TestContext::default(); - context + TestContext::default() .new_command() - .args_vec(vec!["test".to_string(), file_url]) + .args_vec(["test", file_url.as_str()]) .run() .assert_matches_file("test/file_protocol.out"); } |