14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
|
/// <reference path='../_protractor/e2e.d.ts' />
|
||
|
'use strict';
|
||
|
describe('i18n E2E Tests', () => {
|
||
|
|
||
|
beforeEach(function () {
|
||
|
browser.get('');
|
||
|
});
|
||
|
|
||
|
it('should display i18n translated welcome: Bonjour i18n!', function () {
|
||
|
expect(element(by.css('h1')).getText()).toEqual('Bonjour i18n!');
|
||
|
});
|
||
|
|
||
|
});
|