From 99beca1ecedab74aa96b8303be21b41945552637 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 29 Dec 2021 21:34:22 +0100 Subject: [PATCH] Update junit-interface to 0.13.3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0e40d53..a421664 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ lazy val scalaLibraryNext = crossProject(JVMPlatform, JSPlatform) .in(file(".")) .jvmSettings( libraryDependencies += "junit" % "junit" % "4.13.2" % Test, - libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.2" % Test, + libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test, testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"), ) .jsEnablePlugins(ScalaJSJUnitPlugin)