Skip to content

Commit 01e0e28

Browse files
committed
Fixed invalid formatting
1 parent 73a9ffa commit 01e0e28

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/htmlreporter.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class HTMLReporter {
9696
stylesheetFilePath = this.getConfigValue("styleOverridePath") as string;
9797
}
9898
// Decide whether to inline the CSS or not
99-
const inlineCSS = !this.getConfigValue("useCssFile")
99+
const inlineCSS = !this.getConfigValue("useCssFile");
100100

101101
if (inlineCSS) {
102102
const stylesheetContent = fs.readFileSync(stylesheetFilePath, "utf8");
@@ -457,11 +457,11 @@ class HTMLReporter {
457457
const logElement = consoleLogContainer.ele("div", {
458458
class: "suite-consolelog-item",
459459
});
460-
if(!this.getConfigValue("hideConsoleLogOrigin")) {
460+
if (!this.getConfigValue("hideConsoleLogOrigin")) {
461461
logElement.ele(
462-
"pre",
463-
{class: "suite-consolelog-item-origin"},
464-
utils.sanitizeOutput(log.origin)
462+
"pre",
463+
{ class: "suite-consolelog-item-origin" },
464+
utils.sanitizeOutput(log.origin)
465465
);
466466
}
467467
logElement.ele(

0 commit comments

Comments
 (0)