2015-12-30 17:58:09 -08:00

16 lines
281 B
JavaScript

describe('QuickStart E2E Tests', function () {
var expectedMsg = 'My First Angular 2 App';
beforeEach(function () {
browser.get('');
});
it('should display: ' + expectedMsg, function () {
expect(element(by.css('h1')).getText()).toEqual(expectedMsg);
});
});