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 fcebccd commit 33e3c79Copy full SHA for 33e3c79
browserstack-report-action/src/services/ReportProcessor.js
@@ -11,9 +11,12 @@ class ReportProcessor {
11
const { summary } = core;
12
await summary.addHeading('BrowserStack Test Report');
13
14
- const addToSummaryReport = this.reportData?.report?.basicHtml;
+ let addToSummaryReport = this.reportData?.report?.basicHtml;
15
+ addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
16
+ core.info(`Report HTML: ${addToSummaryReport}`);
17
if (addToSummaryReport) {
- await summary.addRaw(`<html>${addToSummaryReport}</html>`);
18
+
19
+ await summary.addRaw(addToSummaryReport);
20
} else {
21
await summary.addRaw('⚠️ No report content available');
22
}
0 commit comments