1 2 3 4 5 6 7 8 9 10 11 12 13
describe('Home', function () { beforeEach(function () { browser.get('/'); }); it('should have <my-home>', function () { var home = element(by.css('vid-app my-home')); expect(home.isPresent()).toEqual(true); expect(home.getText()).toEqual("Home Works!"); }); });