mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 06:22:53 +00:00
test: add ThingTranslateService to app testbed
This commit is contained in:
@@ -11,7 +11,12 @@ exports.config = {
|
||||
capabilities: {
|
||||
browserName: 'chrome',
|
||||
chromeOptions: {
|
||||
args: ['--no-sandbox', "--headless", "--disable-gpu", "--window-size=800x600"]
|
||||
args: ['--no-sandbox', '--headless', '--disable-gpu', '--window-size=800,600', '--lang=de-DE'],
|
||||
prefs: {
|
||||
intl: {
|
||||
'accept_languages': 'de-DE'
|
||||
}
|
||||
},
|
||||
}
|
||||
},
|
||||
directConnect: false,
|
||||
|
||||
@@ -26,8 +26,8 @@ describe('Settings', () => {
|
||||
page.navigateTo('#/settings');
|
||||
});
|
||||
|
||||
it('should have a title saying Settings', () => {
|
||||
expect(page.getPageTitle()).toBe('Settings');
|
||||
it('should have a localized title saying "Einstellungen"', () => {
|
||||
expect(page.getPageTitle()).toBe('Einstellungen');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user