From a433e2678f29aa228a4f47e1b2801b2869756065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fede=20Fern=C3=A1ndez?= <720923+fedefernandez@users.noreply.github.com> Date: Wed, 11 Jan 2023 16:24:28 +0100 Subject: [PATCH] Update build.sbt --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 898fdd77..417fa904 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,9 @@ lazy val github4s = (crossProject(JSPlatform, JVMPlatform)) // See the README for why this is necessary // https://github.com/scala-js/scala-js-macrotask-executor/tree/v1.0.0 // tl;dr: without it, performance problems and concurrency bugs abound - libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.0.0" % Test + libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.0.0" % Test, + // Disable nonunit warning on tests + Test / scalacOptions -= "-Wnonunit-statement" ) //////////