Add createCheck to display test results in GitHub UI

pull/97/head
David Finol 2021-02-22 17:07:08 -06:00
parent 868493af70
commit 31641a173a
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -36,10 +36,12 @@ class ReportConverter {
const innerSuite = suites['test-suite'];
if (innerSuite) {
result.push(...ReportConverter.convertSuite(innerSuite));
core.info(`pushed suite ${innerSuite._attributes.id}`);
}
const tests = suites['test-case'];
if (tests) {
core.info(`tests length ${tests.length}`);
result.push(...ReportConverter.convertTests(suites._attributes.fullname, tests));
}