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
Please fix in the file index.js the line number 291: const reportJsonPath = "${outputDir}/report.json";
the variable outputDir is not set because of " sign
The right way should be: const reportJsonPath = ${outputDir}/report.json;
Cheers
The text was updated successfully, but these errors were encountered:
Please fix in the file index.js the line number 291:
const reportJsonPath = "${outputDir}/report.json";
the variable outputDir is not set because of " sign
The right way should be:
const reportJsonPath =
${outputDir}/report.json
;Cheers
The text was updated successfully, but these errors were encountered: