Suppose I have a setup such that a() .then(b) .then(c) Is there a way to verify that b runs before c using chai-spies?
Suppose I have a setup such that
a()
.then(b)
.then(c)
Is there a way to verify that b runs before c using chai-spies?