I am currently working on a Scala.js library intended to be exposed as a JS library. To make my tests run faster I added the option as per scalajs's Basic Tutorial
scalaJSUseRhino in Global := false
However when I run the tests in sbt nothing seems to happen:
clean
project myprojectJS
test
last
Here are the relevant outputs from the last command
[debug] Loading JSEnv with linked file /home/jacob/proj/mastermind/js/target/scala-2.11/mastermind-test-fastopt.js
[debug] Subclass fingerprints: List()
[debug] Annotation fingerprints: List()
Nothing seems to be happening after JSEnv has been loaded.