@@ -2041,20 +2041,16 @@ function run() {
20412041 const commentIdentifier = `<!-- codeCoverageDiffComment -->` ;
20422042 const deltaCommentIdentifier = `<!-- codeCoverageDeltaComment -->` ;
20432043 let totalDelta = null ;
2044- console . log ( '>>>>>>1' ) ;
20452044 if ( rawTotalDelta !== null ) {
20462045 totalDelta = Number ( rawTotalDelta ) ;
20472046 }
2048- console . log ( '>>>>>>2' ) ;
20492047 let commentId = null ;
20502048 child_process_1 . execSync ( `${ commandToRun } ` ) ;
2051- console . log ( '>>>>>>3' ) ;
20522049 const codeCoverageNew = ( JSON . parse ( fs_1 . default . readFileSync ( 'coverage-summary.json' ) . toString ( ) ) ) ;
20532050 // execSync('/usr/bin/git fetch')
20542051 // execSync('/usr/bin/git stash')
20552052 // execSync(`/usr/bin/git checkout --progress --force ${branchNameBase}`)
20562053 const codeCoverageOld = ( JSON . parse ( fs_1 . default . readFileSync ( 'develop-coverage-summary.json' ) . toString ( ) ) ) ;
2057- console . log ( codeCoverageOld ) ;
20582054 const currentDirectory = child_process_1 . execSync ( 'pwd' )
20592055 . toString ( )
20602056 . trim ( ) ;
@@ -6753,8 +6749,7 @@ class DiffChecker {
67536749 this . diffCoverageReport = { } ;
67546750 const reportNewKeys = Object . keys ( coverageReportNew ) ;
67556751 const reportOldKeys = Object . keys ( coverageReportOld ) ;
6756- // const reportKeys = new Set([...reportNewKeys, ...reportOldKeys])
6757- const reportKeys = new Set ( [ ...reportNewKeys ] ) ;
6752+ const reportKeys = new Set ( [ ...reportNewKeys , ...reportOldKeys ] ) ;
67586753 for ( const filePath of reportKeys ) {
67596754 this . diffCoverageReport [ filePath ] = {
67606755 branches : {
0 commit comments