This commit is contained in:
nuno maduro
2026-04-30 20:58:06 +01:00
parent 3c91bf4ad2
commit 3a26028d17

View File

@ -179,6 +179,12 @@ final class Tia implements AddsOutput, HandlesArguments, Terminable
$result = $this->replayGraph->getResult($this->branch, $testId);
if ($result instanceof TestStatus) {
if ($result->isFailure() || $result->isError()) {
$this->executedCount++;
return null;
}
$this->replayedCount++;
$assertions = $this->replayGraph->getAssertions($this->branch, $testId);
$this->cachedAssertionsByTestId[$testId] = $assertions ?? 0;