my test structure is ```describe(){ beforeEachT...
# spek
p
my test structure is
Copy code
describe(){
   beforeEachTest{
  // initialize some things
}
context{
// access those things
it{
 //validate
}
}
}