Skip to content

Commit

Permalink
zio version.
Browse files Browse the repository at this point in the history
  • Loading branch information
khajavi committed Apr 24, 2024
1 parent 9f1f768 commit 2c6f388
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ lazy val docs = project
),
publish / skip := true,
mdocVariables ++= Map(
"ZIO_SCHEMA_VERSION" -> ZioSchemaVersion
"ZIO_SCHEMA_VERSION" -> ZioSchemaVersion,
"ZIO_VERSION" -> ZioVersion
)
)
.dependsOn(zioHttpJVM)
Expand Down
4 changes: 2 additions & 2 deletions docs/testing-http-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ object ExampleSpec extends ZIOSpecDefault {
Also, ZIO HTTP provides a testkit called `zio-http-testkit` that includes `TestClient` and `TestServer` utilities which helps us to test our HTTP applications without the need for having a real live client and server instances.

```scala
libraryDependencies += "dev.zio" %% "zio-test" % ZioVersion % Test
libraryDependencies += "dev.zio" %% "zio-test-sbt" % ZioVersion % Test
libraryDependencies += "dev.zio" %% "zio-test" % "@ZIO_VERSION@" % Test
libraryDependencies += "dev.zio" %% "zio-test-sbt" % "@ZIO_VERSION@" % Test
libraryDependencies += "dev.zio" %% "zio-http-testkit" % "@VERSION@" % Test
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
```
Expand Down

0 comments on commit 2c6f388

Please sign in to comment.