fix file name

This commit is contained in:
Liam DeBeasi
2023-05-19 09:54:24 -04:00
parent 1dc9721bee
commit eacfdbbc6b
2 changed files with 5 additions and 3 deletions

View File

@ -15,7 +15,7 @@ runs:
# directory, including nested directories. # directory, including nested directories.
# It then unzips every .zip to the root directory # It then unzips every .zip to the root directory
run: | run: |
find . -type f -name 'test-report-*.zip' -exec unzip -q -o -d ../ {} \; find . -type f -name 'TestReport-*.zip' -exec unzip -q -o -d ../ {} \;
ls; ls;
cd ../ && ls; cd ../ && ls;
shell: bash shell: bash

View File

@ -77,7 +77,7 @@ const generateReport = async () => {
}); });
} }
console.log(generateTable(flakyDict)); return generateTable(flakyDict);
} }
@ -137,4 +137,6 @@ const generateRows = (specs: any) => {
return template; return template;
} }
console.log(generateReport()); generateReport().then((res) => {
console.log(res);
});