angular-docs-cn/public/docs/_examples/cb-i18n/e2e-spec.ts

14 lines
311 B
TypeScript
Raw Normal View History

/// <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!');
});
});