Reputation: 3249
Was just trying to wrap my head around how a BDD Story-scenario-Given-when-then maps to Kiwi's describe-context-it as a general rule of thumb if that is possible.. just to get a feel of what should go where when writing tests
Upvotes: 0
Views: 31
Reputation: 1973
I would say that it maps in this sequence
given-when-then => (describe/context)-it-should
At least that's how I use it and it works for me.
Upvotes: 0