このモジュール (2) のテスト (1) を実装しようとしています。
私の目的は、特定のイベントがトリガーされたときにコレクションがフェッチされるかどうかを確認することです。
(2)の私のコメントからわかるように、メッセージが表示さ Error: Expected a spy, but got Function.
れますモジュールは機能しますが、テストは失敗します。何か案は?
(1)
// jasmine test module
describe('When onGivePoints is fired', function () {
beforeEach(function () {
spyOn(this.view.collection, 'restartPolling').andCallThrough();
app.vent.trigger('onGivePoints');
});
it('the board collection should be fetched', function () {
expect(this.view.collection.restartPolling).toHaveBeenCalled();
// Error: Expected a spy, but got Function.
});
});
(2)
// model view module
return Marionette.CompositeView.extend({
initialize: function () {
this.collection = new UserBoardCollection();
this.collection.startPolling();
app.vent.on('onGivePoints', this.collection.restartPolling);
},
// other code
});