sbt play cross build project setup: uTest runner doesn't seperate client/server projects correctly
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