Skip to content

Commit

Permalink
⬆️ Update munit to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwojnowski committed Jul 5, 2024
1 parent e42a336 commit 13eeb11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ lazy val Versions = new {

val jwtScala = "9.4.4"

val mUnit = "0.7.29"
val mUnitCatsEffect = "1.0.7"
val mUnit = "1.0.0"
val mUnitCatsEffect = "2.0.0"

}

Expand All @@ -54,10 +54,10 @@ lazy val core = (project in file("core")).settings(
libraryDependencies += "org.typelevel" %% "cats-core" % Versions.cats.core,
libraryDependencies += "org.typelevel" %% "cats-effect" % Versions.cats.effect,
libraryDependencies += "org.scalameta" %% "munit" % Versions.mUnit % Test,
libraryDependencies += "org.typelevel" %% "munit-cats-effect-3" % Versions.mUnitCatsEffect % Test,
libraryDependencies += "org.typelevel" %% "munit-cats-effect" % Versions.mUnitCatsEffect % Test,
libraryDependencies += "org.typelevel" %% "cats-effect-testkit" % Versions.cats.effect % Test,
libraryDependencies += "org.scalameta" %% "munit-scalacheck" % "0.7.29" % Test,
libraryDependencies += "org.typelevel" %% "scalacheck-effect-munit" % "1.0.4" % Test,
libraryDependencies += "org.scalameta" %% "munit-scalacheck" % Versions.mUnit % Test,
libraryDependencies += "org.typelevel" %% "scalacheck-effect-munit" % "2.0.0-M2" % Test,
libraryDependencies += "com.github.jwt-scala" %% "jwt-core" % "10.0.1" % Test
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import scala.concurrent.duration.FiniteDuration

class PropertyIdTokenVerifierTest extends CatsEffectSuite with ScalaCheckEffectSuite {

override val munitTimeout: FiniteDuration = 90.seconds
override val munitIOTimeout: FiniteDuration = 90.seconds

override protected def scalaCheckTestParameters: Test.Parameters = Parameters.default.withMinSuccessfulTests(30)

Expand Down

0 comments on commit 13eeb11

Please sign in to comment.