File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -75308,9 +75308,21 @@ const runTests = async () => {
75308
75308
debug(`Cypress options ${JSON.stringify(cypressOptions)}`)
75309
75309
75310
75310
const onTestsFinished = (testResults) => {
75311
+ console.log(
75312
+ '🚀 ~ file: index.js ~ line 701 ~ onTestsFinished ~ testResults',
75313
+ testResults
75314
+ )
75311
75315
const dashboardUrl = testResults.runUrl
75312
75316
process.chdir(startWorkingDirectory)
75313
75317
75318
+ const summary = core.summary
75319
+
75320
+ summary.addTable([
75321
+ testResults.message,
75322
+ testResults.failures,
75323
+ testResults.totalFailed
75324
+ ])
75325
+
75314
75326
if (testResults.failures) {
75315
75327
console.error('Test run failed, code %d', testResults.failures)
75316
75328
console.error('More information might be available above')
Original file line number Diff line number Diff line change @@ -698,9 +698,21 @@ const runTests = async () => {
698
698
debug ( `Cypress options ${ JSON . stringify ( cypressOptions ) } ` )
699
699
700
700
const onTestsFinished = ( testResults ) => {
701
+ console . log (
702
+ '🚀 ~ file: index.js ~ line 701 ~ onTestsFinished ~ testResults' ,
703
+ testResults
704
+ )
701
705
const dashboardUrl = testResults . runUrl
702
706
process . chdir ( startWorkingDirectory )
703
707
708
+ const summary = core . summary
709
+
710
+ summary . addTable ( [
711
+ testResults . message ,
712
+ testResults . failures ,
713
+ testResults . totalFailed
714
+ ] )
715
+
704
716
if ( testResults . failures ) {
705
717
console . error ( 'Test run failed, code %d' , testResults . failures )
706
718
console . error ( 'More information might be available above' )
You can’t perform that action at this time.
0 commit comments