mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
fix file name
This commit is contained in:
@ -15,7 +15,7 @@ runs:
|
||||
# directory, including nested directories.
|
||||
# It then unzips every .zip to the root directory
|
||||
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;
|
||||
cd ../ && ls;
|
||||
shell: bash
|
||||
|
@ -77,7 +77,7 @@ const generateReport = async () => {
|
||||
});
|
||||
}
|
||||
|
||||
console.log(generateTable(flakyDict));
|
||||
return generateTable(flakyDict);
|
||||
}
|
||||
|
||||
|
||||
@ -137,4 +137,6 @@ const generateRows = (specs: any) => {
|
||||
return template;
|
||||
}
|
||||
|
||||
console.log(generateReport());
|
||||
generateReport().then((res) => {
|
||||
console.log(res);
|
||||
});
|
||||
|
Reference in New Issue
Block a user