But instead ```rootContext<Stack> { contex...
# minutest
d
But instead
Copy code
rootContext<Stack> {
  context("an stack") {
    given { Stack() }
    ...tests
    context("empty") {
      ...tests
    }
    context("adding") {
      beforeEach { it.add("first") }
      ...tests
    }
  }
}