Created
January 19, 2015 19:41
-
-
Save tonetheman/7b1e4bc9a60377b304e6 to your computer and use it in GitHub Desktop.
todo-spec.js example taken from protractor website http://angular.github.io/protractor/#/tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('angularjs homepage', function() { | |
it('should have a title', function() { | |
browser.get('http://juliemr.github.io/protractor-demo/'); | |
expect(browser.getTitle()).toEqual('Super Calculator'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is the location to create todo-spec.js & confid.js file?