File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ jobs:
250250
251251 // Add tests from specs
252252 if (suite.specs) {
253- console.log(JSON.stringify(spec ));
253+ console.log(JSON.stringify(suite.specs ));
254254 tests.push(...suite.specs.map(spec => ({
255255 title: spec.title,
256256 fullTitle: `${fullSuiteTitle} > ${spec.title}`,
@@ -355,7 +355,7 @@ jobs:
355355 | ${testResults.total} | ${testResults.passed} | ${testResults.failed} | ${testResults.flaky} | ${testResults.skipped} |
356356
357357 <details>
358- <summary>Test Changes Summary ✨( ${testComparison.new.length}) ⏭️( ${testResults.skipped}) 🗑️( ${testComparison.deleted.length}) </summary>
358+ <summary>Test Changes Summary ✨${testComparison.new.length} ⏭️${testResults.skipped} 🗑️${testComparison.deleted.length}</summary>
359359
360360 #### ✨ New Tests (${testComparison.new.length})
361361 ${testComparison.new.length > 0 ? testComparison.new.map((test, i) => `${i + 1}. ${test}`).join('\n') : 'None'}
You can’t perform that action at this time.
0 commit comments