summaryrefslogtreecommitdiff
path: root/cli/tests/integration/lsp_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration/lsp_tests.rs')
-rw-r--r--cli/tests/integration/lsp_tests.rs38
1 files changed, 21 insertions, 17 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs
index 49b8bb495..26268f0a4 100644
--- a/cli/tests/integration/lsp_tests.rs
+++ b/cli/tests/integration/lsp_tests.rs
@@ -8303,23 +8303,27 @@ fn lsp_performance() {
assert_eq!(
averages,
vec![
- "did_open",
- "hover",
- "initialize",
- "op_load",
- "request",
- "testing_update",
- "tsc $configure",
- "tsc $getAssets",
- "tsc $getSupportedCodeFixes",
- "tsc getQuickInfoAtPosition",
- "update_cache",
- "update_diagnostics_deps",
- "update_diagnostics_lint",
- "update_diagnostics_ts",
- "update_import_map",
- "update_registries",
- "update_tsconfig",
+ "lsp.did_open",
+ "lsp.hover",
+ "lsp.initialize",
+ "lsp.testing_update",
+ "lsp.update_cache",
+ "lsp.update_diagnostics_deps",
+ "lsp.update_diagnostics_lint",
+ "lsp.update_diagnostics_ts",
+ "lsp.update_import_map",
+ "lsp.update_registries",
+ "lsp.update_tsconfig",
+ "tsc.host.$configure",
+ "tsc.host.$getAssets",
+ "tsc.host.$getDiagnostics",
+ "tsc.host.$getSupportedCodeFixes",
+ "tsc.host.getQuickInfoAtPosition",
+ "tsc.op.op_load",
+ "tsc.request.$configure",
+ "tsc.request.$getAssets",
+ "tsc.request.$getSupportedCodeFixes",
+ "tsc.request.getQuickInfoAtPosition",
]
);
client.shutdown();