From 2dc3f6f57a5e0fe68f3265c6a3a89cc37661ff32 Mon Sep 17 00:00:00 2001 From: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:55:56 -0700 Subject: 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) --- cli/bench/lsp.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli') 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 { let mean = (times.iter().sum::() / 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"); -- cgit v1.2.3