TEST DURATION很多的测试报告都会显示测试所花费的时间,同样也会对一些耗时的测试作出特殊的标记。 我们可以使用slow()方法来明确的表示出,超过多久的时间,这个测试就可以认为是slow的。 describe('something slow', function() { this.slow(10000); it('should take long enough for me to go make a sandwich', function() { // ... });});