So, I noticed that the it()
functions inside describe()
blocks don't (always) run in the order I wrote them.
Are they asynchronous then? And how to force them to run in a certain order ?
I want to chain a bunch of UI mutations and basically have each it()
function check the state of the UI after the previous step.
If they are executed asynchronously, that kind of beats the point. That would mean each it()
block would need to contain all the steps from the previous one?
it('should do something', function() {
// app is in state 1
// do something
// leave app in state 2
});
it('should continue from the state left after the previous block', function() {
// app is in state 2
// do something
// leave app in state 3
});
it('should continue from the state left after the previous block', function() {
// app is in state 3
// do something
// leave app in state 4
});
it('should continue from the state left after the previous block', function() {
// app is in state 4
// do something
// leave app in state 5
});
...
Everything inside an "it" function is an independent test. What you need to do is put shared steps in a "beforeEach" function
You can nest additional "describe" blocks inside each other, containing additional "beforeEach" functions, having the effect of issuing consecutive commands.