0

我在茉莉花测试中无法理解间谍。

当我运行以下测试时,我可以CLOSE EVENT在控制台中看到输出,但测试triggers close失败。

如何使用间谍正确编写测试?

define([
    'backbone'
], function(Backbone){
    describe('TEST', function(){
        beforeEach(function(){
            this.view = new (Backbone.View.extend({
                initialize: function(){
                    _(this).bindAll('close');
                    this.$el.append($('<span>', {class: 'closeview'}));
                    $('body').append(this.$el);
                    this.$el.on('click', '.closeview', this.close);
                },
                close: function(){
                    console.log('CLOSE EVENT');
                }
            }));
        });
        it('exists', function(){
            expect(this.view.$el).toBeVisible();
        });
        it('triggers close', function(){
            spyOn(this.view, 'close');
            this.view.$el.find('.closeview').trigger('click');
            expect(this.view.close).toHaveBeenCalled();
        });
    });
});
4

1 回答 1

1

当你监视一个函数时,你实际上是在存根该方法。如果您只想检查是否调用了该函数,但执行内容很重要,则需要添加:

and.callThrough()

尝试将您的示例修改为:

spyOn(this.view, 'close').and.callThrough();

看看这是否可以帮助您解决问题:)

于 2016-09-12T09:08:39.950 回答