Skip to content

Instantly share code, notes, and snippets.

@tonetheman
Created January 19, 2015 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonetheman/7b1e4bc9a60377b304e6 to your computer and use it in GitHub Desktop.
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
describe('angularjs homepage', function() {
it('should have a title', function() {
browser.get('http://juliemr.github.io/protractor-demo/');
expect(browser.getTitle()).toEqual('Super Calculator');
});
});
@Ravi220
Copy link

Ravi220 commented Oct 1, 2015

What is the location to create todo-spec.js & confid.js file?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment