diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-11 17:17:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 17:17:14 -0400 |
commit | 28a72d548801f81a96ff4bba750d8dc51a2b1567 (patch) | |
tree | 0a689e1256d6e20f071156f5c8d0f52758a58d2d /cli/tests/integration/repl_tests.rs | |
parent | c926bc0debd0df3bf62d5125a490f8675e70c6ef (diff) |
feat(lsp): ability to configure document pre-load limit (#19097)
Adds a `deno.preloadLimit` option (ex. `"deno.preloadLimit": 2000`)
which specifies how many file entries to traverse on the file system
when the lsp loads or its configuration changes.
Closes #18955
Diffstat (limited to 'cli/tests/integration/repl_tests.rs')
-rw-r--r-- | cli/tests/integration/repl_tests.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/tests/integration/repl_tests.rs b/cli/tests/integration/repl_tests.rs index 517fda1b7..e6fc7aa91 100644 --- a/cli/tests/integration/repl_tests.rs +++ b/cli/tests/integration/repl_tests.rs @@ -1014,9 +1014,6 @@ fn closed_file_pre_load_does_not_occur() { .new_command() .args_vec(["repl", "-A", "--log-level=debug"]) .with_pty(|console| { - assert_contains!( - console.all_output(), - "Skipping document preload for repl.", - ); + assert_contains!(console.all_output(), "Skipping document preload.",); }); } |