Try not to use rhino during scala JS tests

Why is rhino back? Should be node...
This commit is contained in:
Alexandre Archambault 2016-03-14 16:20:48 +01:00
parent 2fbe57da7a
commit 645100ae3c
1 changed files with 2 additions and 1 deletions

View File

@ -199,7 +199,8 @@ lazy val tests = crossProject
)
.jsSettings(
postLinkJSEnv := NodeJSEnv().value,
scalaJSStage in Global := FastOptStage
scalaJSStage in Global := FastOptStage,
scalaJSUseRhino in Global := false
)
lazy val testsJvm = tests.jvm.dependsOn(cache % "test")