Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnolte committed Oct 11, 2024
1 parent be97bc5 commit 1e9df65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/handlers/testing/exec/components/progress/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ function TestRunRow(props: {
if (!process.env.CI) {
return makeAutoblocksLocalTestResultsHtmlUrl({
testExternalId: props.runMeta.testExternalId,
runId: props.runMeta.id,
});
}
if (props.ciBranchId) {
return makeAutoblocksCITestResultsHtmlUrl({
testExternalId: props.runMeta.testExternalId,
branchId: props.ciBranchId,
runId: props.runMeta.id,
});
}
return null;
Expand Down

0 comments on commit 1e9df65

Please sign in to comment.