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

Commit

Permalink
Revert "switch to sentence case"
Browse files Browse the repository at this point in the history
This reverts commit a5b55db.
  • Loading branch information
ashishkeshan committed Nov 30, 2023
1 parent a5b55db commit 6e4b26b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/aggregate-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function AggregateResults(runnerResults) {

const allMaxScores = getAllMaxScores(runnerResults)

console.log(COLORS.magenta, 'Test runner summary', COLORS.reset)
console.log(COLORS.magenta, 'Test Runner Summary', COLORS.reset)

const totals = [
{
Expand Down
2 changes: 1 addition & 1 deletion src/console-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ exports.ConsoleResults = function ConsoleResults(runnerResults) {

// Calculate and display grand total points
const grandTotalPoints = (grandTotalPassedTests / grandTotalTests) * 100
console.log(`${COLORS.cyan}🏆 Grand total points: ${grandTotalPoints.toFixed(2)}/100${COLORS.reset}\n`)
console.log(`${COLORS.cyan}🏆 Grand Total Points: ${grandTotalPoints.toFixed(2)}/100${COLORS.reset}\n`)
}

0 comments on commit 6e4b26b

Please sign in to comment.