diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-03-23 00:24:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 00:24:45 +0100 |
commit | c3f306d7782a30440435d4b3493a9f681bb31e09 (patch) | |
tree | ad5e823d0b09f21eb43ef5558c8037618dd72a6e /cli/tests/integration/test_tests.rs | |
parent | 85c60d23f2b0ec7e2240e91bbddcc054379ec2da (diff) |
fix(test): don't error on missing op details (#14074)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index f3cf9ebd0..9c1ad3f47 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -180,6 +180,12 @@ itest!(ops_sanitizer_multiple_timeout_tests_no_trace { output: "test/ops_sanitizer_multiple_timeout_tests_no_trace.out", }); +itest!(ops_sanitizer_missing_details { + args: "test --allow-write --allow-read test/ops_sanitizer_missing_details.ts", + exit_code: 1, + output: "test/ops_sanitizer_missing_details.out", +}); + itest!(ops_sanitizer_nexttick { args: "test test/ops_sanitizer_nexttick.ts", output: "test/ops_sanitizer_nexttick.out", |