mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 06:47:09 +01:00
forgot to rebuild dist package
This commit is contained in:
parent
b96bed2d8a
commit
58b14f9054
2 changed files with 2 additions and 7 deletions
1
.github/workflows/playwright-report-test.yml
vendored
1
.github/workflows/playwright-report-test.yml
vendored
|
|
@ -23,3 +23,4 @@ jobs:
|
||||||
reporter: java-junit
|
reporter: java-junit
|
||||||
show-html-notice: true
|
show-html-notice: true
|
||||||
list-tests: 'non-skipped'
|
list-tests: 'non-skipped'
|
||||||
|
fail-on-error: false
|
||||||
|
|
|
||||||
8
dist/index.js
generated
vendored
8
dist/index.js
generated
vendored
|
|
@ -1691,13 +1691,7 @@ function getSuitesReport(tr, runIndex, options) {
|
||||||
const tsNameLink = skipLink ? tsName : (0, markdown_utils_1.link)(tsName, tsAddr);
|
const tsNameLink = skipLink ? tsName : (0, markdown_utils_1.link)(tsName, tsAddr);
|
||||||
const passed = s.passed > 0 ? `${s.passed}${markdown_utils_1.Icon.success}` : '';
|
const passed = s.passed > 0 ? `${s.passed}${markdown_utils_1.Icon.success}` : '';
|
||||||
const failed = s.failed > 0 ? `${s.failed}${markdown_utils_1.Icon.fail}` : '';
|
const failed = s.failed > 0 ? `${s.failed}${markdown_utils_1.Icon.fail}` : '';
|
||||||
let skipped;
|
const skipped = s.skipped > 0 ? `${s.skipped}${markdown_utils_1.Icon.skip}` : '';
|
||||||
if (options.listTests === 'non-skipped') {
|
|
||||||
return [tsNameLink, passed, failed, '', tsTime];
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
skipped = s.skipped > 0 ? `${s.skipped}${markdown_utils_1.Icon.skip}` : '';
|
|
||||||
}
|
|
||||||
return [tsNameLink, passed, failed, skipped, tsTime];
|
return [tsNameLink, passed, failed, skipped, tsTime];
|
||||||
}));
|
}));
|
||||||
sections.push(suitesTable);
|
sections.push(suitesTable);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue