summaryrefslogtreecommitdiff
path: root/cli/bench/lsp.rs
diff options
context:
space:
mode:
authorNathan Whitaker <17734409+nathanwhit@users.noreply.github.com>2024-04-17 12:55:56 -0700
committerGitHub <noreply@github.com>2024-04-17 20:55:56 +0100
commit2dc3f6f57a5e0fe68f3265c6a3a89cc37661ff32 (patch)
tree3b97051d3bb9476f0e334b19f631198252d7ac10 /cli/bench/lsp.rs
parent71a1fa4c2ee2b5eab04e3293c116edd72177ba26 (diff)
chore(lsp): Include new benchmark in the collected benchmark data (#23420)
So it will actually show up on the [deno benchmarks site](http://deno.com/benchmarks)
Diffstat (limited to 'cli/bench/lsp.rs')
-rw-r--r--cli/bench/lsp.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/bench/lsp.rs b/cli/bench/lsp.rs
index a5994c653..f2070eb21 100644
--- a/cli/bench/lsp.rs
+++ b/cli/bench/lsp.rs
@@ -421,6 +421,7 @@ pub fn benchmarks(deno_exe: &Path) -> HashMap<String, i64> {
let mean =
(times.iter().sum::<Duration>() / times.len() as u32).as_millis() as i64;
println!(" ({} runs, mean: {}ms)", times.len(), mean);
+ exec_times.insert("deco_apps_edits_nav".to_string(), mean);
println!("<- End benchmarking lsp");