Ajout exo protractor

This commit is contained in:
2015-04-10 01:01:21 +02:00
parent 22eb8175fe
commit 1d015b15d5
13 changed files with 156 additions and 19 deletions

View File

@ -0,0 +1,13 @@
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/#/');
});
});