From ef38aa9d9cec3cb43fff1cab7ada4a4689e861da Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Fri, 26 Jul 2024 09:53:52 +1000 Subject: chore: fix bench task (#24718) --- cli/bench/main.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cli/bench/main.rs b/cli/bench/main.rs index cfbc44e8c..68f4c6ce3 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -124,6 +124,8 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option)] = &[ "check", "--reload", "--unstable", + "--config", + "tests/config/deno.json", "tests/util/std/http/file_server_test.ts", ], None, @@ -135,6 +137,8 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option)] = &[ "--reload", "--no-check", "--unstable", + "--config", + "tests/config/deno.json", "tests/util/std/http/file_server_test.ts", ], None, @@ -144,6 +148,8 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option)] = &[ &[ "bundle", "--unstable", + "--config", + "tests/config/deno.json", "tests/util/std/http/file_server_test.ts", ], None, @@ -154,6 +160,8 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option)] = &[ "bundle", "--no-check", "--unstable", + "--config", + "tests/config/deno.json", "tests/util/std/http/file_server_test.ts", ], None, @@ -320,6 +328,8 @@ fn bundle_benchmark(deno_exe: &Path) -> Result> { deno_exe.to_str().unwrap(), "bundle", "--unstable", + "--config", + "tests/config/deno.json", url, &path, ], -- cgit v1.2.3