标签: 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) { });