diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-11 00:22:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 00:22:14 +0100 |
commit | 5be8c96ae899f5944da70e1909da7e608afefafa (patch) | |
tree | 06ed9d91dcf10bf26c3dc744dc4e6ce83cceb6b6 /cli/tools/bench.rs | |
parent | 79aa3124a8cf7e311398d279a05d44c788c5def5 (diff) |
feat: Stabilize Deno.bench() and 'deno bench' subcommand (#16485)
Diffstat (limited to 'cli/tools/bench.rs')
-rw-r--r-- | cli/tools/bench.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/tools/bench.rs b/cli/tools/bench.rs index 55e98a8b9..1868d76b3 100644 --- a/cli/tools/bench.rs +++ b/cli/tools/bench.rs @@ -356,11 +356,7 @@ async fn bench_specifier( &ps, specifier.clone(), permissions, - vec![ops::bench::init( - channel.clone(), - filter, - ps.options.unstable(), - )], + vec![ops::bench::init(channel.clone(), filter)], Default::default(), ) .await?; |