mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
fix(test): improve how --fail-fast
shuts down when hitting limit (#16956)
Closes #15650
This commit is contained in:
parent
3863aaf8ae
commit
2fab4583ef
5 changed files with 104 additions and 31 deletions
|
@ -1086,6 +1086,9 @@
|
|||
}
|
||||
|
||||
for (const desc of filtered) {
|
||||
if (ops.op_tests_should_stop()) {
|
||||
break;
|
||||
}
|
||||
ops.op_dispatch_test_event({ wait: desc.id });
|
||||
const earlier = DateNow();
|
||||
const result = await runTest(desc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue