Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update munit to 1.0.0-RC1 #12

Merged
merged 1 commit into from Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.sbt
Expand Up @@ -123,7 +123,8 @@ lazy val munitScalacheck = crossProject(JSPlatform, JVMPlatform, NativePlatform)
sharedSettings,
libraryDependencies ++= Seq(
"org.scalacheck" %%% "scalacheck" % "1.18.0",
"org.scalameta" %%% "munit" % "1.0.0-M12"
"org.scalameta" %%% "munit-diff" % "1.0.0-RC1",
"org.scalameta" %%% "munit" % "1.0.0-RC1"
)
)
.jvmSettings(
Expand Down
2 changes: 1 addition & 1 deletion tests/shared/src/main/scala/munit/BaseFrameworkSuite.scala
@@ -1,7 +1,7 @@
package munit

import munit.diff.console.AnsiColors
import munit.internal.PlatformCompat
import munit.internal.console.AnsiColors
import sbt.testing.Event
import sbt.testing.EventHandler
import sbt.testing.Logger
Expand Down
3 changes: 2 additions & 1 deletion tests/shared/src/test/scala/munit/CustomPrinterSuite.scala
@@ -1,9 +1,10 @@
package munit

import org.scalacheck.Prop.forAll
import munit.diff.Printer
import munit.internal.console.Printers
import org.scalacheck.Arbitrary.arbitrary
import org.scalacheck.Prop
import org.scalacheck.Prop.forAll

class CustomPrinterSuite extends FunSuite with ScalaCheckSuite {

Expand Down