Skip to content

Commit 89ac254

Browse files
committed
fixed log
1 parent 859aca6 commit 89ac254

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6773,7 +6773,7 @@ class DiffChecker {
67736773
return returnStrings;
67746774
}
67756775
checkIfTestCoverageFallsBelowDelta(delta) {
6776-
console.log({ diffCoverageReport: this.diffCoverageReport });
6776+
console.log({ diffCoverageReport: JSON.stringify(this.diffCoverageReport) });
67776777
const reportKeys = Object.keys(this.diffCoverageReport);
67786778
for (const reportKey of reportKeys) {
67796779
const diffCoverageData = this.diffCoverageReport[reportKey];

src/DiffChecker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class DiffChecker {
6868
}
6969

7070
checkIfTestCoverageFallsBelowDelta(delta: number): boolean {
71-
console.log({diffCoverageReport: this.diffCoverageReport})
71+
console.log({diffCoverageReport: JSON.stringify(this.diffCoverageReport)})
7272
const reportKeys = Object.keys(this.diffCoverageReport)
7373
for (const reportKey of reportKeys) {
7474
const diffCoverageData = this.diffCoverageReport[reportKey]

0 commit comments

Comments
 (0)