I\'m looking for an IntelliJ IDEA plugin that would run my tests each time I change my code. I looked for such a solution and I found:
I know this is a 3-year-old question but I think it will help people who face the similar problem in future. So I found out a way to enable SBT style auto test execution in IntelliJ studio.
We need to do 2 things to enable auto test execution.
File -> Settings -> Build, Execution... -> Compiler
and selecting "Build Project automatically"
.This will start auto testing. Although this works fine, it takes time to build the project even when my project is tiny so for larger projects it will certainly take very long time to complete the build and execute tests.
Reference: Original article which explains these steps