0
我試圖在Karma運行一些茉莉花測試,但測試失敗,因爲它說它運行0測試0。有人能告訴我我做錯了什麼嗎?噶瑪+茉莉花報告0測試運行時,有測試
異步請求模擬觸發並觸發回調。即使當我去調試器,它說2個測試在調試器中完成,但在控制檯失敗。是什麼賦予了?
describe('User Info Tests:', function() {
describe('Fetch User Info:', function() {
it("User Name should match", function(done) {
// mock async request
getUserProfile(1, 2, function (userProfile) {
var match = userProfile.displayName === 'Unit Test User';
expect(match).toBeTruthy();
done();
}, function (msg) {
done();
throw msg;
});
});
});
});
請參閱下面的運行測試的調試控制檯的截圖。您將看到測試運行狀態爲SUCCESS。