Hacker News new | ask | show | jobs
by volkk 1308 days ago
> hypertest only runs the tests the were impacted by the changed code

with all due respect, this is also a solved problem with test watchers. unless you mean this is smart enough to not just run unit tests that are directly related to the file changed, but also understands code changes from the perspective of downstream dependencies?

1 comments

The second part is the aim here.

This is more of a code watcher than a test watcher specifically.

sbt ~test uses the dependency analysis of the scala compiler to determine which tests to run.
Are you sure that's actually true, all the way down to the method or line level?

https://www.scala-sbt.org/1.x/docs/Testing.html

very cool!