我试图测试我的指令,但是当我用业力加载所有东西时,我使用 ng-html2js。
它可以很好地加载模块,然后失败
Error: Unexpected request: GET modules/contenteditable/contenteditable.html?v=1
No more request expected
实际问题
那么如何将 url 参数添加到我的 ng-html2js 模块?
因为我们使用 ?v=VERSIONNUMBER 为每个模板文件添加缓存,甚至指令模板
业力配置
preprocessors: {
'common/modules/**/*.html': 'ng-html2js'
},
ngHtml2JsPreprocessor: {
stripPrefix: 'common/',
moduleName: function (htmlPath, originalPath) {
return htmlPath;
}
},
考试
describe("contenteditable", function() {
var elm, $compile, $rootScope;
beforeEach(function(){
module(
'angularModalService',
'constant.phpConstants',
'directive.contenteditable',
'modules/contenteditable/contenteditable.html'
);
angular.mock.module('ngMockE2E');
inject(function(_$compile_, _$rootScope_) {
$compile = _$compile_;
$rootScope = _$rootScope_;
});
elm = angular.element('<rte></rte>');
scope = $rootScope;
$compile(elm)(scope);
scope.$digest();
});
it("should compile the widget", function() {
console.log(elm[0]);
});
});