In my code, this works and gives the expected result in all circumstances: ```js stub.callCount.should.eql(10); ``` However, this only works if the assertion passes: ```js stub.should.have.callCount(10); ``` If the assertion fails, the test suite hangs.