scala - Configuring IntelliJ IDEA with background compilation for Specs2 tests? -
, the scala compilation is in external process.
But whenever I run the Specs2 test, it makes the project that takes 1 to 3 minutes.
How to configure the Spex 2 test to run properly in the Intelleze IDEA, will it reuse the result from the background thread?
I have spent a lot of time watching this and the basic problem is that IntelliJ is for every compilation Spin the SBT.
It was quite easy to run sbt "~ testQuick" in a terminal window, to take advantage of mounting compilation and intelligent testing, SBT runs only tests affected by code changes.
Comments
Post a Comment