Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishkeshan committed Feb 27, 2024
1 parent a59ae51 commit 7c2ea1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/console-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ exports.ConsoleResults = function ConsoleResults(runnerResults) {
}

console.log(`🔄 Processing: ${runner}`)
console.log(results)
let passedTests = 0
const totalTests = results.tests.length

Expand All @@ -30,6 +31,9 @@ exports.ConsoleResults = function ConsoleResults(runnerResults) {
console.log(`${COLORS.red}${test.name}\n`)
console.log(`${test.message || ''}\n${COLORS.reset}`)
}
if (test.test_code) {
console.log(`Test code: ${test.test_code}\n`)
}
})

// Update grand totals
Expand Down

0 comments on commit 7c2ea1e

Please sign in to comment.