Skip to content

Commit 063ebb3

Browse files
committed
Enable tests for scala native
1 parent c1f41a7 commit 063ebb3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

+4-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
104104
.nativeSettings(
105105
versionPolicyCheck / skip := true,
106106
versionCheck / skip := true,
107-
test := {}
107+
Test / fork := false,
108+
libraryDependencies :=
109+
libraryDependencies.value.filterNot(_.organization == "junit") :+ "org.scala-native" %%% "junit-runtime" % "0.4.3",
110+
addCompilerPlugin("org.scala-native" % "junit-plugin" % "0.4.3" cross CrossVersion.full)
108111
)
109112

110113
lazy val parserCombinatorsJVM = parserCombinators.jvm

0 commit comments

Comments
 (0)