Skip to content

Commit

Permalink
Fix a typo in tags explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
DLakomy authored Aug 14, 2023
1 parent cb63270 commit 37b36a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ and `myproject/all:test` that run only slow tests and all tests, respectively.
// build.sbt
val MUnitFramework = new TestFramework("munit.Framework")
+ val Slow = config("slow").extend(Test)
+ val All = config("slow").extend(Test)
+ val All = config("all").extend(Test)
lazy val myproject = project
+ .configs(Slow, All)
.settings(
Expand Down

0 comments on commit 37b36a0

Please sign in to comment.