diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-06-24 12:00:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 12:00:53 +0200 |
commit | d39094913e91e5193f63459d9c5ca6ddc7779477 (patch) | |
tree | 597f66d8637644abf2a10422cf7abb35ea3c5598 /cli/tests/integration/run_tests.rs | |
parent | 215f3d4c8e5f694bc6341ca5307b8a3794a32de0 (diff) |
fix: don't error if Deno.bench() or Deno.test() are used in run subcommand (#14946)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index fb0d6313b..09a1ba500 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2728,3 +2728,8 @@ fn running_declaration_files() { assert!(output.status.success()); } } + +itest!(test_and_bench_are_noops_in_run { + args: "run test_and_bench_in_run.js", + output_str: Some(""), +}); |