Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f53efd8

Browse files
committed
adding html separately
1 parent 490bf8d commit f53efd8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38235,6 +38235,7 @@ class ReportProcessor {
3823538235
let addToSummaryReport = this.reportData?.report?.basicHtml;
3823638236
if (addToSummaryReport) {
3823738237
addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
38238+
core.info(`Report HTML: ${addToSummaryReport}`);
3823838239
await summary.addRaw(addToSummaryReport);
3823938240
} else {
3824038241
await summary.addRaw('⚠️ No report content available');

browserstack-report-action/src/services/ReportProcessor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class ReportProcessor {
1414
let addToSummaryReport = this.reportData?.report?.basicHtml;
1515
if (addToSummaryReport) {
1616
addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
17+
core.info(`Report HTML: ${addToSummaryReport}`);
1718
await summary.addRaw(addToSummaryReport);
1819
} else {
1920
await summary.addRaw('⚠️ No report content available');

0 commit comments

Comments
 (0)