Skip to content

Commit

Permalink
replaced string literals
Browse files Browse the repository at this point in the history
  • Loading branch information
kdivya153 committed Sep 18, 2024
1 parent 5d164ca commit eb51137
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,17 @@ function runTests(){
exit 1
fi
echo "Checking for report generator"
node -e '
const marge = require("mochawesome-report-generator/bin/cli-main");

node -e "
const marge = require('mochawesome-report-generator/bin/cli-main');
marge({
_: ["report/${MODULE}/report.json"],
reportFileName: "report.json",
reportTitle: "FireboltCertificationTestReport",
reportPageTitle: "FireboltCertificationTestReport",
reportDir: "./report/${MODULE}",
_: ['report/${MODULE}/report.json'],
reportFileName: 'report.json',
reportTitle: 'FireboltCertificationTestReport',
reportPageTitle: 'FireboltCertificationTestReport',
reportDir: './report/${MODULE}',
});
'
"
}

function getResults(){
Expand Down

0 comments on commit eb51137

Please sign in to comment.