How do unit test with angular-translate

后端 未结 11 1969
死守一世寂寞
死守一世寂寞 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 10:07

    I encountered this problem with protractor tests. My solution was to mock translations like this:

    angular.module('app')
            .config(function ($translateProvider) {
                $translateProvider.translations('en', {});
                $translateProvider.preferredLanguage('en');
            })
    

    Now no language files are downloaded, no strings get translated and I just test against the string keys in specifications:

    expect(element(by.css('#title')).getText()).toEqual('TITLE_TEXT');
    

提交回复
热议问题