2016-05-30 11:05:09 -07:00
|
|
|
/// <reference path="../_protractor/e2e.d.ts" />
|
2016-01-22 02:40:37 -08:00
|
|
|
describe('Homepage Todo', function () {
|
|
|
|
|
|
|
|
beforeAll(function () {
|
|
|
|
browser.get('');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Does it even launch?
|
2016-05-30 11:05:09 -07:00
|
|
|
let expectedAppTitle = 'Todo';
|
2016-01-22 02:40:37 -08:00
|
|
|
it('should display app title: ' + expectedAppTitle, function () {
|
|
|
|
expect(element(by.css('h2')).getText()).toEqual(expectedAppTitle);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|