From fc72c060b37f5c5e32c23d6363aa1bb38e0efce6 Mon Sep 17 00:00:00 2001 From: Philippus Baalman Date: Fri, 19 Apr 2024 16:51:53 +0200 Subject: [PATCH] Remove junit -q parameter (#243) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 59a1264..ba731af 100644 --- a/build.sbt +++ b/build.sbt @@ -30,7 +30,7 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform, NativePlatfor case _ => Seq.empty } }, - testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s", "-a"), + testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-s", "-a"), Test / parallelExecution := false, // why? libraryDependencies ++= Seq( "junit" % "junit" % "4.13.2" % Test,