14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
|
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/#/');
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|