Skip to content

Commit

Permalink
Update docs to account for MUnit being included by default in sbt now
Browse files Browse the repository at this point in the history
  • Loading branch information
gabro committed Apr 5, 2021
1 parent cc9998b commit f8812ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ MUnit is a Scala testing library with the following goals:
```scala
libraryDependencies += "org.scalameta" %% "munit" % "@VERSION@" % Test
// Use %%% for non-JVM projects.
```

If you are using a version of sbt lower than 1.5.0, you will also need to add:

```scala
testFrameworks += new TestFramework("munit.Framework")
```

Expand Down

0 comments on commit f8812ef

Please sign in to comment.