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