File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6056,7 +6056,6 @@ const commentForMonorepo = (
60566056) => {
60576057 const { base } = options ;
60586058 const html = lcovArrayForMonorepo . map ( lcovObj => {
6059- console . log ( lcovBaseArrayForMonorepo , "lcovBaseArrayForMonorepo" ) ;
60606059 const baseLcov = lcovBaseArrayForMonorepo . find (
60616060 el => el . packageName === lcovObj . packageName ,
60626061 ) ;
@@ -6087,7 +6086,6 @@ const commentForMonorepo = (
60876086 let report = lcovObj . lcov ;
60886087
60896088 if ( baseLcov ) {
6090- console . log ( baseLcov , "baseLcov on comment compare" ) ;
60916089 const onlyInLcov = lcovObj . lcov . filter ( comparer ( baseLcov . lcov ) ) ;
60926090 const onlyInBefore = baseLcov . lcov . filter ( comparer ( lcovObj . lcov ) ) ;
60936091 report = onlyInBefore . concat ( onlyInLcov ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ const commentForMonorepo = (
3838) => {
3939 const { base } = options ;
4040 const html = lcovArrayForMonorepo . map ( lcovObj => {
41- console . log ( lcovBaseArrayForMonorepo , "lcovBaseArrayForMonorepo" ) ;
4241 const baseLcov = lcovBaseArrayForMonorepo . find (
4342 el => el . packageName === lcovObj . packageName ,
4443 ) ;
@@ -69,7 +68,6 @@ const commentForMonorepo = (
6968 let report = lcovObj . lcov ;
7069
7170 if ( baseLcov ) {
72- console . log ( baseLcov , "baseLcov on comment compare" ) ;
7371 const onlyInLcov = lcovObj . lcov . filter ( comparer ( baseLcov . lcov ) ) ;
7472 const onlyInBefore = baseLcov . lcov . filter ( comparer ( lcovObj . lcov ) ) ;
7573 report = onlyInBefore . concat ( onlyInLcov ) ;
You can’t perform that action at this time.
0 commit comments