Проблема, с которой я сталкиваюсь, заключается в том, что я хочу сделать templateUrl: "partials/my-directive.html"
но в настоящее время я должен сделать его templateUrl: "app/partials/my-directive.html
, чтобы он был загружен кармой.
это моя структура папок (в основном структура папки yomen)
app
partials
my-directive.template.html
directives
my-directive.js
app.js
karma.conf.js
вот код директивы
angular.module("exampleApp")
.directive("adminMod", function () {
return {
restrict: "E",
templateUrl: "app/partials/admin-mod.html",
scope: {
props: "="
}
}
});
heres unit test часть
beforeEach(module("app/partials/admin-mod.html"));
heres the karma.conf.js
files: [
'app/bower_components/jquery/jquery.js',
'app/bower_components/angular/angular.js',
'app/partials/*.html'
],
preprocessors: {
'app/partials/*.html': 'ng-html2js'
},
ngHtml2JsPreprocessor: {
//prependPrefix: ???? what do I make this
},
Я хотел бы сделать url относительно папки приложения не моим karma.conf.file Я думаю, что я исчерпал каждую комбинацию путей, может кто-нибудь объяснить, что и как это должно работать с файловой структурой генератора Yeoman angular