35

我正在尝试为此模块 (2) 实施测试 (1)。
我的目的是检查在触发特定事件时是否获取了集合。
正如您从我在 (2) 中的评论中看到的那样,我收到消息 Error: Expected a spy, but got Function.
The module works but the test failed。有任何想法吗?


(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
});
4

3 回答 3

49

你需要进入实际的方法,在这种情况下是在原型上。

describe('When onGivePoints is fired', function () {
    beforeEach(function () {
        spyOn(UsersBoardCollection.prototype, 'restartPolling').andCallThrough();
        app.vent.trigger('onGivePoints');
    });
    it('the board collection should be fetched', function () {
        expect(UsersBoardCollection.prototype.restartPolling).toHaveBeenCalled();
    });
});

监视原型是一个不错的技巧,当您无法访问要监视的实际实例时可以使用。

于 2012-08-21T15:18:01.693 回答
4

我也遇到了同样的问题,但我通过在函数调用中传递一个参数来解决它。然后你必须在it

var data = {name:"test"}
spyOn(UsersBoardCollection.prototype, "restartPolling").and.callThrough();
UsersBoardCollection.prototype.restartPolling(data);
expect(UsersBoardCollection.prototype.restartPolling).toHaveBeenCalled();
于 2015-12-17T05:07:48.920 回答
0

我有这个错误是因为我加载了两个版本的 sinon,或者我没有正确初始化 sinon-jasmine。当我在我的规范设置中显式加载 sinon 和 sinon jasmine 时,它​​开始正常运行。

于 2016-09-18T23:19:44.490 回答