Skip to content

Commit

Permalink
fixed log
Browse files Browse the repository at this point in the history
  • Loading branch information
zuki-linB committed Nov 22, 2023
1 parent 859aca6 commit 89ac254
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6773,7 +6773,7 @@ class DiffChecker {
return returnStrings;
}
checkIfTestCoverageFallsBelowDelta(delta) {
console.log({ diffCoverageReport: this.diffCoverageReport });
console.log({ diffCoverageReport: JSON.stringify(this.diffCoverageReport) });
const reportKeys = Object.keys(this.diffCoverageReport);
for (const reportKey of reportKeys) {
const diffCoverageData = this.diffCoverageReport[reportKey];
Expand Down
2 changes: 1 addition & 1 deletion src/DiffChecker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class DiffChecker {
}

checkIfTestCoverageFallsBelowDelta(delta: number): boolean {
console.log({diffCoverageReport: this.diffCoverageReport})
console.log({diffCoverageReport: JSON.stringify(this.diffCoverageReport)})
const reportKeys = Object.keys(this.diffCoverageReport)
for (const reportKey of reportKeys) {
const diffCoverageData = this.diffCoverageReport[reportKey]
Expand Down

0 comments on commit 89ac254

Please sign in to comment.