I have some JUnit tests I want to run.
In sbt all I have to do is adding this dependency:
"com.novocode" % "junit-interface" % "0.11" % "test"
According to the Mill documentation you have to add the custom framework like:
def testFrameworks = Seq("org.scalatest.tools.Framework", "WHAT GOES HERE?")
What do I have to do that my JUnit Tests work?
While writing the question I figured it out:
In
build.shyou have:ivy"com.novocode:junit-interface:0.11"com.novocode.junit.JUnitFrameworkThe whole component looks then: