Gallery
About
I’m building TaskBounty, a service that takes SaaS repos to 80% test coverage by delivering the tests as a finished PR. The free entry point is Coverage Check: https://task-bounty.com/coverage-check What it does: - public repos: reads public coverage from Codecov / Coveralls / SonarCloud if available - private repos: runs a read-only sandbox scan and sends back current coverage, gap to 80%, and top files to test first I’m trying to figure out if the positioning is clear enough. The intended buye...
Comments (8)
basically just a lead magnet for the paid service
delivering as a finished pr is smarter than just dumping generated test files
pr delivery model solves the actual adoption problem with test tooling
what are you using for gap detection, static analysis or runtime tracing?
super useful for finding gaps
how do you prevent generated tests that pass but test nothing meaningful?
ran it, actually found coverage gaps our CI didn't catch
80% coverage from generated tests usually means low assertion quality.
ComingUp