Add createCheck to display test results in GitHub UI

pull/97/head
David Finol 2021-02-22 14:02:14 -06:00
parent b4a7370c47
commit c838b9cba9
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -18,7 +18,6 @@ class ResultsCheck {
core.info(`Processing file ${filepath}...`);
const fileData = await ResultsCheck.parseReport(path.join(artifactsPath, filepath));
core.info(fileData.summary);
core.info(fileData.suites.length);
runs.push(fileData);
}),
);
@ -31,6 +30,7 @@ class ResultsCheck {
runSummary.skipped += suite.skipped;
runSummary.failed += suite.failed;
runSummary.duration += suite.duration;
core.info(suite.suites.length);
suite.suites.forEach(s => {
runSummary.addTests(s.tests);
});