diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-03-27 03:10:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 03:10:23 +0000 |
commit | e1e1da2a04f627f058dc33355a31d67abb1616b6 (patch) | |
tree | 123e0e46755553f5872aa25cb1205eadf62d1893 /tests/integration/lsp_tests.rs | |
parent | 34a651ea2ed36063fbe58d5de0d0c41ae9fbd980 (diff) |
fix(lsp): prefer cache over tsc quick fixes (#23093)
Diffstat (limited to 'tests/integration/lsp_tests.rs')
-rw-r--r-- | tests/integration/lsp_tests.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index 9ddaebc59..852f56e9b 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -4698,19 +4698,19 @@ fn test_lsp_code_actions_ordering() { } let res = serde_json::to_value(actions).unwrap(); - // Ensure ordering is "deno-ts" -> "deno" -> "deno-lint". + // Ensure ordering is "deno" -> "deno-ts" -> "deno-lint". assert_eq!( res, json!([ { - "title": "Add async modifier to containing function", - "source": "deno-ts", - }, - { "title": "Cache \"https://deno.land/x/a/mod.ts\" and its dependencies.", "source": "deno", }, { + "title": "Add async modifier to containing function", + "source": "deno-ts", + }, + { "title": "Disable prefer-const for this line", "source": "deno-lint", }, |