fix error AppTitle service test log

This commit is contained in:
Eugenio Romano 2018-05-30 13:16:24 +01:00
parent fa2613f096
commit 44ad5fcfa0

View File

@ -52,7 +52,9 @@ class TestConfig {
}
},
get: () => this.setup.applicationName,
load: () => {}
load: () => {
return Promise.resolve();
}
}
};
@ -71,7 +73,7 @@ class TestConfig {
]
});
inject([ Title, PageTitleService, TranslationService ], (titleService, appTitleService, translationService) => {
inject([Title, PageTitleService, TranslationService], (titleService, appTitleService, translationService) => {
this.titleService = titleService;
this.appTitleService = appTitleService;
this.translationService = translationService;