Similarly I would try not to write ```rootContext&...
# minutest
d
Similarly I would try not to write
Copy code
rootContext<Stack> {
  context("an empty stack") {
    given { Stack() }
    ...tests
    context("a stack with one item") {
      beforeEach { it.add("first") }
      ...tests
    }
  }
}