``` class FooSpec : Spek() { init { given("") ...
# spek
h
Copy code
class FooSpec : Spek() { init {
    given("") {
        beforeOn { print("1") }
        on("") {
            print("2")
            it("") {
                print("3a")
            }
            it("") {
                print("3b")
            }
        }
    }
}}
this outputs "123a3b" (and something with
teamcity[...]
), but should output "123a123b" (or "123b123a" 😃).