Project

General

Profile

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('my-app my-home'));
9
    expect(home.isPresent()).toEqual(true);
10
    expect(home.getText()).toEqual("Home Works!");
11
  });
12

    
13
});
(1-1/5)