diff --git a/packages/hoppscotch-common/src/components/http/ResponseInterface.vue b/packages/hoppscotch-common/src/components/http/ResponseInterface.vue index fc83716c..fa3b14c1 100644 --- a/packages/hoppscotch-common/src/components/http/ResponseInterface.vue +++ b/packages/hoppscotch-common/src/components/http/ResponseInterface.vue @@ -185,6 +185,11 @@ const response = computed(() => { if (res?.type === "success" || res?.type === "fail") { response = getResponseBodyText(res.body) } + } else if (doc.type === "test-runner") { + const res = doc.request?.response + if (res?.type === "success" || res?.type === "fail") { + response = getResponseBodyText(res.body) + } } else { const res = doc.response.body response = res