mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
fix file name
This commit is contained in:
@ -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
|
||||||
|
@ -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);
|
||||||
|
});
|
||||||
|
Reference in New Issue
Block a user