diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-03-23 16:33:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 16:33:42 +0100 |
commit | b82ded84d341cda98821592556804a529638589c (patch) | |
tree | c36dae6ea227c21f0238cad05ce4315f5547eca3 /cli/tests/integration | |
parent | 53dac7451bbdd527aa91e01653b678547624fc39 (diff) |
fix(bench): require --unstable flag in JavaScript (#14091)
Diffstat (limited to 'cli/tests/integration')
-rw-r--r-- | cli/tests/integration/bench_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/bench_tests.rs b/cli/tests/integration/bench_tests.rs index 06806c0b7..2df08bdb5 100644 --- a/cli/tests/integration/bench_tests.rs +++ b/cli/tests/integration/bench_tests.rs @@ -2,6 +2,12 @@ use crate::itest; +itest!(requires_unstable { + args: "bench bench/requires_unstable.js", + exit_code: 70, + output: "bench/requires_unstable.out", +}); + itest!(overloads { args: "bench --unstable bench/overloads.ts", exit_code: 0, |