describe('App', function () { beforeEach(function () { browser.get('/'); }); it('should have a title', function () { expect(browser.getTitle()).toEqual("Angular 2 App | ng2-webpack"); }); it('should have
', function () { expect(element(by.css('my-app header')).isPresent()).toEqual(true); }); it('should have
', function () { expect(element(by.css('my-app main')).isPresent()).toEqual(true); }); it('should have a main title', function () { expect(element(by.css('main h1')).getText()).toEqual('Hello from Angular 2!'); }); it('should have