最佳答案
使用 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 needs loading as-is
无法使用 respond