Skip to content

Instantly share code, notes, and snippets.

@nsbingham
Created August 26, 2013 21:01
Show Gist options
  • Save nsbingham/6346608 to your computer and use it in GitHub Desktop.
Save nsbingham/6346608 to your computer and use it in GitHub Desktop.
Should we do ...
it("should do", function(done){
return class.hasTitle(browser, "home", done);
});
-- or --
it("should do", function(done){
return browser
.hasTitle("home")
.done(function(){
done();
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment