utest

sbt play cross build project setup: uTest runner doesn't seperate client/server projects correctly

余生长醉 提交于 2019-12-22 17:35:11
问题 I'm using an build.sbt which has cross compile settings and basically is an adapted version of "Play with scala-js example" and having some trouble getting a clean setup for my tests. Specifically, when running my server tests, my client tests also get executed (which is something that I want to avoid). I followed the instructions from Cannot get uTest to see my tests and added libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0" My tests for some reason didn't get executed until I

sbt play cross build project setup: uTest runner doesn't seperate client/server projects correctly

☆樱花仙子☆ 提交于 2019-12-22 17:34:08
问题 I'm using an build.sbt which has cross compile settings and basically is an adapted version of "Play with scala-js example" and having some trouble getting a clean setup for my tests. Specifically, when running my server tests, my client tests also get executed (which is something that I want to avoid). I followed the instructions from Cannot get uTest to see my tests and added libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0" My tests for some reason didn't get executed until I

sbt play cross build project setup: uTest runner doesn't seperate client/server projects correctly

五迷三道 提交于 2019-12-06 11:41:12
I'm using an build.sbt which has cross compile settings and basically is an adapted version of " Play with scala-js example " and having some trouble getting a clean setup for my tests. Specifically, when running my server tests, my client tests also get executed (which is something that I want to avoid). I followed the instructions from Cannot get uTest to see my tests and added libraryDependencies += "com.lihaoyi" %%% "utest" % "0.3.0" My tests for some reason didn't get executed until I added testFrameworks += new TestFramework("utest.runner.Framework") to every project definition. Also not