aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularSpec.js
blob: 65a32279b5ae087d3be4c858a0627bcf74144c74 (plain)
1
2
3
4
5
6
7
8
9
10
describe('Angular', function(){
  it('should fire on updateEvents', function(){
    var onUpdateView = jasmine.createSpy();
    var scope = angular.compile("<div></div>", { onUpdateView: onUpdateView });
    expect(onUpdateView).wasNotCalled();
    scope.init();
    scope.updateView();
    expect(onUpdateView).wasCalled();
  });
});