在我的案例中如何修复这个单元测试?
How to fix this unit test in my case?
我正在尝试对我的指令进行单元测试。
我有类似的东西
'use strict';
describe('directive test', function () {
var $compile, $rootScope, httpBackend, ngFactory;
beforeEach(module('myApp'));
beforeEach(inject(function (_$compile_, _$rootScope_, _$httpBackend_, _ngFactory_) {
$compile = _$compile_;
scope = _$rootScope_.$new();
$httpBackend = _$httpBackend_;
ngFactory = _ngFactory_;
$httpBackend.whenGET('template.html').respond(200);
}));
it('this will setup directive', function() {
var elem = $compile('<my-factory factoryName="name1"></my-factory>')(scope);
scope.$digest();
expect(scope.run).toBe(1);
});
});
我的指令
(function(window, angular) {
'use strict';
var app = angular.module('myApp');
app.directive('myFactory', ['ngFactory',
function(ngFactory) {
return {
restrict: 'E',
templateUrl:'template.html',
link: function(scope, elem, attrs) { //not cover
scope.test = function() { //not cover
//do stuff here //not cover
}; //not cover
} //not cover
};
}
]);
})(window, angular);
出于某种原因,我的单元测试没有涵盖 link 函数。我不确定我做错了什么。有人可以帮帮我吗?谢谢!
您还需要刷新模板请求:
it('this will setup directive', function() {
var elem = $compile('<my-factory factoryName="name1"></my-factory>')(scope);
$httpBackend.flush();
scope.$digest();
expect(scope.run).toBe(1);
});
确保加载和呈现正确的模板。
我正在尝试对我的指令进行单元测试。
我有类似的东西
'use strict';
describe('directive test', function () {
var $compile, $rootScope, httpBackend, ngFactory;
beforeEach(module('myApp'));
beforeEach(inject(function (_$compile_, _$rootScope_, _$httpBackend_, _ngFactory_) {
$compile = _$compile_;
scope = _$rootScope_.$new();
$httpBackend = _$httpBackend_;
ngFactory = _ngFactory_;
$httpBackend.whenGET('template.html').respond(200);
}));
it('this will setup directive', function() {
var elem = $compile('<my-factory factoryName="name1"></my-factory>')(scope);
scope.$digest();
expect(scope.run).toBe(1);
});
});
我的指令
(function(window, angular) {
'use strict';
var app = angular.module('myApp');
app.directive('myFactory', ['ngFactory',
function(ngFactory) {
return {
restrict: 'E',
templateUrl:'template.html',
link: function(scope, elem, attrs) { //not cover
scope.test = function() { //not cover
//do stuff here //not cover
}; //not cover
} //not cover
};
}
]);
})(window, angular);
出于某种原因,我的单元测试没有涵盖 link 函数。我不确定我做错了什么。有人可以帮帮我吗?谢谢!
您还需要刷新模板请求:
it('this will setup directive', function() {
var elem = $compile('<my-factory factoryName="name1"></my-factory>')(scope);
$httpBackend.flush();
scope.$digest();
expect(scope.run).toBe(1);
});
确保加载和呈现正确的模板。