Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/overview/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,18 @@ object test extends Tests {
### scala-cli
```scala
//> using lib "org.typelevel::weaver-cats:@VERSION@"
//> using testFramework "weaver.framework.CatsEffect" // this may neccessary if you have other TestFramework on your dependencies
//> using testFramework "weaver.framework.CatsEffect" // this may be neccessary if you have other testFramework on your dependencies
```

### Gradle
With [Gradle plugin for multi-backend Scala](https://github.com/dubinsky/scalajs-gradle):
```groovy
plugins {
id 'org.podval.tools.scalajs' version '<latest version>'
}
dependencies {
testImplementation scalaBackend.testFramework(org.podval.tools.test.framework.WeaverTest)
}
```

## Usage
Expand Down