私はという角度のサービスを持っています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
};
});
私はジャスミンを使用してこのサービスを単体テストしようとしています:
"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();
});
});
私はJasmineの非同期サポートについて読みましたが、JavaScriptを使用した単体テストはかなり新しいので、JavaScriptを機能させることができませんでした。
エラーが発生しました:
Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL
テストの実行に時間がかかりすぎる(約5秒)。
誰かが私のコードの実際の例を説明するのを手伝ってくれる?
afterEach
データベースをクリアするステップがあることに気づきました(deleteMany
メソッド)。メソッドに追加することjest.setTimeout(30000);
でbeforeAll
これが修正されたようです-データベースの削除は(条件内の)ネットワーク呼び出しであるため、3秒より長くかかってスローされていたためと思います。