SBT supports continuous testing out of the box. How can I integrate that into IntelliJ, so that IntelliJ shows me the failed tests as they happen (similar to the wonderful NCrunch for .NET)?
Asked
Active
Viewed 317 times
5

Dave Schweisguth
- 36,475
- 10
- 98
- 121

SRobertJames
- 8,210
- 14
- 60
- 107
-
1I know this is old but.. have you ever found what you were looking for? I wish IntelliJ IDEA had a plugin for this. – GuiSim Oct 03 '14 at 19:31
-
@GuiSim - No, I wasn't able to find a solution – SRobertJames Oct 05 '14 at 01:21
-
This guy found a couple of dead ends: http://stackoverflow.com/questions/27172745/continuous-testing-with-intellij-idea – Jacob Brewer Feb 29 '16 at 16:07
-
1Not what you're looking for, but I ended up just running them in the IntelliJ console, with `sbt` then `> ~ test`. – Jonathan Oct 14 '17 at 19:25