For anyone also having issues with code coverage f...
# arrow
s
For anyone also having issues with code coverage from
fix()
, I was able to drastically improve my code coverage doing the following in my tasks block inside of my build.gradle.kts :
Copy code
jacocoTestReport {
  classDirectories.setFrom(
    sourceSets.main.get()
      .output.asFileTree.matching {
        exclude("**/*inlined*.class")
    }
  )
}
❤️ 4
🙏 1