Skip to content

Commit

Permalink
Merge pull request #12 from CJSmith-0141/main
Browse files Browse the repository at this point in the history
Adds `.only` and `.ignore` documentation.
  • Loading branch information
Baccata authored Mar 14, 2024
2 parents fcb3695 + 052d7a0 commit 9efa587
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
54 changes: 54 additions & 0 deletions docs/faqs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
id: faqs
title: Frequently Asked Questions
---

## How do I get weaver working with IntelliJ / vscode / neovim ?

Weaver provides a JUnit runner that IDEs pick up automatically. On IntelliJ the suite should have the normal button to run the tests, and Metals should provide a code lens.

## How do I ignore individual tests ?

An `.ignore` extension method is provided on strings, and can be used when declaring tests. All tests that are tagged with `.ignore` will be ignored in the test suite, including any that are tagged with `.only`.

```scala mdoc
import weaver._
import cats.effect._

object MyIgnoreSuite extends SimpleIOSuite {

test("test this") {
IO(success)
}

test("do not test this".ignore) {
IO.raiseError(new Throwable("Boom"))
}

}
```

## How do I run just one test in a suite?

A `.only` extension method is provided on strings, and can be used when declaring tests. When at least one test is "tagged" as such in a suite, weaver will ignore all tests but the ones that have the "only" tag. Note: `.ignore` has precedence over `.only`.

```scala mdoc
import weaver._
import cats.effect._

object MyOnlySuite extends SimpleIOSuite {

test("test this".only) {
IO(success)
}

test("do not test this") {
IO.raiseError(new Throwable("Boom"))
}

}
```

### Regarding inaccurate test duration when using IntelliJ

Because of modeling incompatibilities between weaver and IntelliJ, the JUnit runner is implemented in a way that makes it impossible for individual test duration to be reported correctly by the IntelliJ's test runner. Sorry about that!
3 changes: 3 additions & 0 deletions website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"multiple_suites_success",
"multiple_suites_failures",
"multiple_suites_logging"
],
"Frequently Asked Questions": [
"faqs"
]
}
}

0 comments on commit 9efa587

Please sign in to comment.