AngularJS + Karma + Ng-html2js => Failed to instantiate module …html
问题 I can't make Karma working for directives that have external templates. Here is my karma configuration file : preprocessors: { 'directives/loading/templates/loading.html': 'ng-html2js' }, files: [ ... 'directives/loading/templates/loading.html', ] ngHtml2JsPreprocessor: { prependPrefix: '/app/' }, In the directive file : ... templateUrl: '/app/directives/loading/templates/loading.html' ... In the spec file : describe('Loading directive', function() { ... beforeEach(module('/app/directives