如何让Jasmine测试在运行每个后续测试之前等待x秒?

时间:2018-06-19 16:39:56

标签: angularjs jasmine karma-jasmine

我在Karma上针对Angular JS应用程序运行了Jasmine测试。我想让测试在每个后续期望之前等待X秒。因此,它将运行第一个期望,等待x秒,然后运行下一个期望。

it('should authenticate a user', function (done) {

});


//wait x seconds then run the next...


it('should retrieve a user profile', function (done) {

});

0 个答案:

没有答案