chore: run linter to fix code style issues

This commit is contained in:
Jozef Izso 2025-11-12 13:41:29 +01:00
parent 7148297f02
commit 5fb0582760
Failed to extract signature
2 changed files with 4 additions and 5 deletions

3
dist/index.js generated vendored
View file

@ -2036,8 +2036,7 @@ function getTestRunsReport(testRuns, options) {
const sections = [];
const totalFailed = testRuns.reduce((sum, tr) => sum + tr.failed, 0);
// Determine if report should be collapsed based on collapsed option
const shouldCollapse = options.collapsed === 'always' ||
(options.collapsed === 'auto' && totalFailed === 0);
const shouldCollapse = options.collapsed === 'always' || (options.collapsed === 'auto' && totalFailed === 0);
if (shouldCollapse) {
sections.push(`<details><summary>Expand for details</summary>`);
sections.push(` `);