I have the following test suite:
class FooTest : FunSpec() {
init {
context("a context") {
test("first test") {
true shouldBe false
}
test("f:second test") {
true shouldBe true
}
}
}
}
I try to execute it in IntelliJ Idea. Unfortunately it executes both test in the suite. It works well if I don't nest the test in context()
.