15 lines
358 B
TypeScript
15 lines
358 B
TypeScript
/// <reference path="../_protractor/e2e.d.ts" />
|
|
describe('Homepage Tabs', function () {
|
|
|
|
beforeAll(function () {
|
|
browser.get('');
|
|
});
|
|
|
|
// Does it even launch?
|
|
let expectedAppTitle = 'Tabs Demo';
|
|
it('should display app title: ' + expectedAppTitle, function () {
|
|
expect(element(by.css('h4')).getText()).toEqual(expectedAppTitle);
|
|
});
|
|
|
|
});
|