You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.info('Report file will not be created because user passed options.doNotCreateReportFile = true. Use HTML output of the function to create report file');
64
+
}else{
65
+
saveHtmlReport({
66
+
htmlContent,
67
+
reportFileName: options?.reportFileName,
68
+
outputDir: options?.outputDir,
69
+
outputDirPath: options?.outputDirPath
70
+
});
71
+
}
72
+
73
+
returnhtmlContent;
67
74
}catch(e){
68
75
console.warn(`HTML report was not created due to the error ${e.message}`);
76
+
77
+
return`Failed to create HTML report due to an error ${e.message}`;
0 commit comments