Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit d572b75

Browse files
committed
welcome aboard JUnit!
1 parent 62b421e commit d572b75

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.sbt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,14 @@ lazy val core: Project = (project in file("core"))
5454
.settings(commonSettings: _*)
5555
.settings(
5656
name := "core",
57+
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a")),
58+
crossPaths := false, // https://github.com/sbt/junit-interface/issues/35
5759
libraryDependencies ++= Seq(
5860
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
5961
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % "test",
6062
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
63+
"junit" % "junit" % "4.12" % "test",
64+
"com.novocode" % "junit-interface" % "0.11" % "test",
6165
scalaTest
6266
)
6367
)

0 commit comments

Comments
 (0)