diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-10-01 03:54:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 21:54:56 +0200 |
commit | 6bf5c850e6b4f6163721bd673b191bda0e0dc0a6 (patch) | |
tree | f02e9d3afb10709467531175b4841fb170ac282d /cli/tests/integration/test_tests.rs | |
parent | c3e441c5b54de09ca3af3e1fd0098e8d307c18d7 (diff) |
fix(runtime/testing): format aggregate errors (#12183)
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 0baf94422..24ceeefb4 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -180,3 +180,9 @@ itest!(shuffle_with_seed { exit_code: 0, output: "test/shuffle.out", }); + +itest!(aggregate_error { + args: "test test/aggregate_error.ts", + exit_code: 1, + output: "test/aggregate_error.out", +}); |