Skip to content

Commit c3fdafb

Browse files
fix service host error message (#161)
1 parent 7fdfc4b commit c3fdafb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webviews/pq-test-result-view/src/views/TestBatteryResultView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const TestBatteryResultView: React.FC<TestBatteryResult> = React.memo<Tes
3939
);
4040

4141
const errorDetailsString = useMemo<string | null>(() => {
42-
if (testRunExecution.Status !== "Passed") {
42+
if (testRunExecution.Status !== "Passed" && testRunExecution.Status !== 3) {
4343
if (testRunExecution.Error?.Message && typeof testRunExecution.Error?.Message === "string") {
4444
return testRunExecution.Error?.Message;
4545
}

0 commit comments

Comments
 (0)