forgot to rebuild dist package

This commit is contained in:
Connor Vidlock 2024-01-30 10:03:34 -06:00
parent b96bed2d8a
commit 58b14f9054
No known key found for this signature in database
GPG key ID: BADEF4A267C14600
2 changed files with 2 additions and 7 deletions

8
dist/index.js generated vendored
View file

@ -1691,13 +1691,7 @@ function getSuitesReport(tr, runIndex, options) {
const tsNameLink = skipLink ? tsName : (0, markdown_utils_1.link)(tsName, tsAddr);
const passed = s.passed > 0 ? `${s.passed}${markdown_utils_1.Icon.success}` : '';
const failed = s.failed > 0 ? `${s.failed}${markdown_utils_1.Icon.fail}` : '';
let skipped;
if (options.listTests === 'non-skipped') {
return [tsNameLink, passed, failed, '', tsTime];
}
else {
skipped = s.skipped > 0 ? `${s.skipped}${markdown_utils_1.Icon.skip}` : '';
}
const skipped = s.skipped > 0 ? `${s.skipped}${markdown_utils_1.Icon.skip}` : '';
return [tsNameLink, passed, failed, skipped, tsTime];
}));
sections.push(suitesTable);