Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | describe('Home', function () { |
2 | |||||
3 | beforeEach(function () { | ||||
4 | browser.get('/'); | ||||
5 | }); | ||||
6 | |||||
7 | it('should have <my-home>', function () { | ||||
8 | var home = element(by.css('vid-app my-home')); | ||||
9 | expect(home.isPresent()).toEqual(true); | ||||
10 | expect(home.getText()).toEqual("Home Works!"); | ||||
11 | }); | ||||
12 | |||||
13 | }); |