0

我正在尝试通过 .on 在我的指令中从 $broadcast(来自控制器)测试接收器。

指示:

describe('<-- myDirective Spec ------>', function () {

    var scope, $compile, element, $httpBackend, rootScope;

    beforeEach(angular.mock.module('myApp'));

    beforeEach(inject(function (_$rootScope_, _$compile_, _$httpBackend_) {
        scope = _$rootScope_.$new();
        $compile = _$compile_;
        $httpBackend = _$httpBackend_;
        rootScope = _$rootScope_;

        var html = '<my-directive></my-directive>';
        element = $compile(angular.element(html))(scope);

        spyOn(scope, '$broadcast').and.callThrough();
        scope.$digest();
    }));

    it('should be defined', function () {
        expect(element).toBeDefined();
    });

    it('should broadcast ', function () {
        scope.$broadcast('sendEmail');
        expect(scope.$on).toHaveBeenCalledWith('sendEmail', jasmine.any(Function));
    });
});

有了上面,我得到错误:

Expected a spy, but got Function.
4

1 回答 1

1

更新:

您可以简单地测试您的 $broadcast 是否被调用

expect(scope.$broadcast).toHaveBeenCalled()

或实际测试 $on 做类似的事情

scope.$on('sendEmail', spyFunction)
expect(spyFunction).toHaveBeenCalledWith('sendEmail')

原因:$broadcast 实际上并没有调用 $on 函数。$on 是一个监听器,它在监听事件(第一个参数)时调用回调函数(作为第二个参数传递)。


您目前正在监视范围的 $broadcast 功能,并已对 $on 功能进行了测试。你需要更换

spyOn(scope, '$broadcast').and.callThrough();

经过

spyOn(scope, '$on').and.callThrough();
于 2016-03-04T09:19:52.553 回答