所以我有一个模仿href函数的指令,除了我希望它可以用按钮来实现,(比如我不喜欢css标签)。
app.directive('ngRef', function($location, $timeout){
linkFn = function(sco,ele,att){
ele.bind('click', function(){
// console.log($location);
$timeout(function(){
$location.path(att.ngRef);
}, 0);
})
}
return linkFn;
})
现在我写了一个测试,看看 mockLocation 是否在点击时被路径到新位置,所以
describe('ngRef', function(){
var mockLoc, mockTimeout, mockCompile, rootScope;
beforeEach(function(){
module('mySite')
inject(function($injector){
mockLoc = $injector.get('$location');
mockTimeout = $injector.get('$timeout');
mockCompile = $injector.get('$compile');
rootScope = $injector.get('$rootScope');
})
})
it('should land on the page of the ngRef attribute on click event', function(){
var elem = angular.element('<button ng-ref="/contact">Click</button>');
expect(rootScope.activePage).toBe('HOME');
mockLoc.path('/home')
mockCompile(elem)(rootScope.$new())
elem.trigger('click');
rootScope.$apply();
setTimeout(function(){
console.log(rootScope.activePage);
expect(mockLoc.path()).toBe('CONTACT');
}, 0)
})
})
但现在我注意到它总是无法通过测试,我的断言有什么问题。