Questions tagged [scala-munit]

For questions about Scalameta's Munit unit test framework for Scala.

Munit is a Scala testing library with actionable errors and extensible APIs.

1 questions
1
vote
0 answers

Including `munit` tests that are excluded by default

I have an munit test: package myawesomeproject import munit.FunSuite class MySillyTest extends FunSuite { val theTag = new munit.Tag("tagname") test("THETEST".tag(theTag)) { assertEquals(2, 3) } } and in my build.sbt, I want to exclude…
Andrey Tyukin
  • 43,673
  • 4
  • 57
  • 93