Skip to content

Commit

Permalink
Replace ScalaTest with ZIO Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe O'Pecko committed Dec 17, 2019
1 parent 30a330a commit fd2f5e8
Show file tree
Hide file tree
Showing 2 changed files with 331 additions and 349 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@ lazy val core = project
name := "zio-saga-core",
crossScalaVersions := allScala,
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.0-RC17",
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
)
"dev.zio" %% "zio" % "1.0.0-RC17",
"dev.zio" %% "zio-test" % "1.0.0-RC17" % "test",
"dev.zio" %% "zio-test-sbt" % "1.0.0-RC17" % "test"
),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
)

val http4sVersion = "0.21.0-M2"
Expand Down
Loading

0 comments on commit fd2f5e8

Please sign in to comment.