We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fdfc4b commit c3fdafbCopy full SHA for c3fdafb
webviews/pq-test-result-view/src/views/TestBatteryResultView.tsx
@@ -39,7 +39,7 @@ export const TestBatteryResultView: React.FC<TestBatteryResult> = React.memo<Tes
39
);
40
41
const errorDetailsString = useMemo<string | null>(() => {
42
- if (testRunExecution.Status !== "Passed") {
+ if (testRunExecution.Status !== "Passed" && testRunExecution.Status !== 3) {
43
if (testRunExecution.Error?.Message && typeof testRunExecution.Error?.Message === "string") {
44
return testRunExecution.Error?.Message;
45
}
0 commit comments