Skip to content

Commit

Permalink
⚗️ Test for CI System (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
soo-bak committed Jul 7, 2024
1 parent aab7772 commit 9b95897
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/UnitTestsAndCodeCoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ jobs:
const methodCoverage = summary.Methodcoverage[0];
let formattedLineCoverage = lineCoverage === "100"
? `\\textbf{\\color{green}{${lineCoverage}\\%}}`
: `\\textbf{\\color{red}{${lineCoverage}\\%}}`;
? `\\\\textbf{\\\\color{green}{${lineCoverage}\\\\%}}`
: `\\\\textbf{\\\\color{red}{${lineCoverage}\\\\%}}`;
let formattedMethodCoverage = methodCoverage === "100"
? `\\textbf{\\color{green}{${methodCoverage}\\%}}`
: `\\textbf{\\color{red}{${methodCoverage}\\%}}`;
? `\\\\textbf{\\\\color{green}{${methodCoverage}\\\\%}}`
: `\\\\textbf{\\\\color{red}{${methodCoverage}\\\\%}}`;
return `
## 🍉 Code Coverage Summary 🧐
Expand Down

0 comments on commit 9b95897

Please sign in to comment.