diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-09-15 16:46:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 15:46:48 +0000 |
commit | 11f0ccf8052065e37f92d8ba43e9624fcd3b9814 (patch) | |
tree | 03ab71902f8c30e2e5a15f95b9a7b2e10e3c3ab1 /cli/tests/integration/test_tests.rs | |
parent | d226970c0ed1e5a9691b7f22a91792b3e6955d9c (diff) |
fix(test): share fail fast tracker between threads (#20515)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index b4bf842ff..bcf3e4ef7 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -182,7 +182,7 @@ itest!(quiet { }); itest!(fail_fast { - args: "test --fail-fast test/fail_fast.ts", + args: "test --fail-fast test/fail_fast.ts test/fail_fast_other.ts", exit_code: 1, output: "test/fail_fast.out", }); |