使用 AngularJS。
有一个指令。
指令定义templateUrl
.
指令需要单元测试。
目前使用 Jasmine 进行单元测试。
这推荐如下代码:
describe('module: my.module', function () {
beforeEach(module('my.module'));
describe('my-directive directive', function () {
var scope, $compile;
beforeEach(inject(function (_$rootScope_, _$compile_, $injector) {
scope = _$rootScope_;
$compile = _$compile_;
$httpBackend = $injector.get('$httpBackend');
$httpBackend.whenGET('path/to/template.html').passThrough();
}));
describe('test', function () {
var element;
beforeEach(function () {
element = $compile(
'<my-directive></my-directive>')(scope);
angular.element(document.body).append(element);
});
afterEach(function () {
element.remove();
});
it('test', function () {
expect(element.html()).toBe('asdf');
});
});
});
});
在 Jasmine 中运行代码。
得到错误:
TypeError: Object #<Object> has no method 'passThrough'
templateUrl 需要按原样加载
不能用respond
可能与ngMock 的使用有关,而不是ngMockE2E 的使用。