mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
fix: don't panic in test and bench if ops not available (#23055)
Fixes regression introduced in https://github.com/denoland/deno/pull/22112 that removed checks if `Deno.test` or `Deno.bench` are not used in respective subcommands. Closes https://github.com/denoland/deno/issues/23041
This commit is contained in:
parent
d263c632e3
commit
d043dd86f7
8 changed files with 34 additions and 0 deletions
|
@ -47,6 +47,11 @@ function bench(
|
|||
optionsOrFn,
|
||||
maybeFn,
|
||||
) {
|
||||
// No-op if we're not running in `deno bench` subcommand.
|
||||
if (typeof op_register_bench !== "function") {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!registeredWarmupBench) {
|
||||
registeredWarmupBench = true;
|
||||
const warmupBenchDesc = {
|
||||
|
|
|
@ -198,6 +198,11 @@ function testInner(
|
|||
maybeFn,
|
||||
overrides = {},
|
||||
) {
|
||||
// No-op if we're not running in `deno test` subcommand.
|
||||
if (typeof op_register_test !== "function") {
|
||||
return;
|
||||
}
|
||||
|
||||
let testDesc;
|
||||
const defaults = {
|
||||
ignore: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue