使用相对模板路径测试角度指令

时间:2017-06-18 20:23:45

标签: javascript angularjs jasmine karma-jasmine

我有如下指令:

var directiveFunction = function() {
        return {
            restrict: 'E',
            templateUrl: '../medical/app/components/address/address.template.html',
            controller: controllerFunction,

            scope: {
                address: '='
            }
        }
 };

当我针对此指令运行test-case时,它失败了。但当我将templateUrl更改为低于它时,它会通过:

templateUrl:'components/address/address.template.html',

为什么不从relative根路径开始?我的申请结构如下:

medical
-- app
   -- components
      --address-card
         --address.template.html

我使用relative path from root的原因,其他模块使用相同的directive

0 个答案:

没有答案