Skip to content

Commit 5fdad7c

Browse files
fix: console.log
1 parent a52caa5 commit 5fdad7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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'}

0 commit comments

Comments
 (0)