How do unit test with angular-translate

后端 未结 11 1940
死守一世寂寞
死守一世寂寞 2020-12-08 09:38

I have uses angular translate from here (http://pascalprecht.github.io/angular-translate/) and it\'s just work fine, but it break my controller\'s unit test whith Error:

11条回答
  •  失恋的感觉
    2020-12-08 09:59

    Late to the table with this, but I got round this by specifying that Karma simply serve the files as per this entry in karma.conf.js:

    files: [
        ...
        {pattern: 'scripts/i18n/*.json', included: false, served: true},
        ...
    ]
    

提交回复
热议问题