describe('TodoMVC spec', function() {

  it('should navigate to TodoMVC/Angular', function() {

    // Documentation API: http://angular.github.io/protractor/#/api

    browser.get('http://todomvc.com/examples/angularjs/');

    expect(browser.getCurrentUrl()).toBe('http://todomvc.com/examples/angularjs/#/');

  });

});