Açılı bir hizmet var requestNotificationChannel
:
app.factory("requestNotificationChannel", function($rootScope) {
var _DELETE_MESSAGE_ = "_DELETE_MESSAGE_";
function deleteMessage(id, index) {
$rootScope.$broadcast(_DELETE_MESSAGE_, { id: id, index: index });
};
return {
deleteMessage: deleteMessage
};
});
Yasemin kullanarak bu hizmeti birim test etmeye çalışıyorum:
"use strict";
describe("Request Notification Channel", function() {
var requestNotificationChannel, rootScope, scope;
beforeEach(function(_requestNotificationChannel_) {
module("messageAppModule");
inject(function($injector, _requestNotificationChannel_) {
rootScope = $injector.get("$rootScope");
scope = rootScope.$new();
requestNotificationChannel = _requestNotificationChannel_;
})
spyOn(rootScope, '$broadcast');
});
it("should broadcast delete message notification", function(done) {
requestNotificationChannel.deleteMessage(1, 4);
expect(rootScope.$broadcast).toHaveBeenCalledWith("_DELETE_MESSAGE_", { id: 1, index: 4 });
done();
});
});
Yasemin'deki Asenkron Destek hakkında okudum, ancak javascript ile birim testi yapmak için yeni olduğum için bunu çalıştıramadım.
Bir hata alıyorum:
Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL
ve testimin yürütülmesi çok uzun sürüyor (yaklaşık 5 saniye).
Birisi kodumun çalışma örneğini biraz açıklamama yardımcı olabilir mi?
Jest
beklentiden ayıklama ve değişkenleri incelemek için biraz zaman çekerken çok yaygın -.
afterEach
( deleteMany
yöntemi kullanarak ) veritabanını temizlemek bir adım olduğunu fark ettim . Ekleme jest.setTimeout(30000);
içinde beforeAll
yönteme benim için sabit gibi görünüyor - veritabanı silme (koşul içinde) bir ağ çağrısı beri, bazen 3 saniye ve atma uzun sürüyor tahmin ediyorum.