From 881238651aeaa889a2fd59dce9d0ed4842522f7d Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Mon, 23 Jan 2023 07:44:26 +0900 Subject: [PATCH] use ScalaNativeJUnitPlugin --- build.sbt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 6a3f3b77..d44276d8 100644 --- a/build.sbt +++ b/build.sbt @@ -101,13 +101,11 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor Test / fork := false ) .jsEnablePlugins(ScalaJSJUnitPlugin) + .nativeEnablePlugins(ScalaNativeJUnitPlugin) .nativeSettings( versionPolicyCheck / skip := true, versionCheck / skip := true, Test / fork := false, - libraryDependencies := - libraryDependencies.value.filterNot(_.organization == "junit") :+ "org.scala-native" %%% "junit-runtime" % "0.4.9", - addCompilerPlugin("org.scala-native" % "junit-plugin" % "0.4.9" cross CrossVersion.full) ) lazy val parserCombinatorsJVM = parserCombinators.jvm