Skip to content

Instantly share code, notes, and snippets.

@mstaack
Forked from asciidisco/dalek_vimeo_login_TEST.js
Last active August 29, 2015 14:14
Show Gist options
  • Save mstaack/8072cc80390f9d2ed8ad to your computer and use it in GitHub Desktop.
Save mstaack/8072cc80390f9d2ed8ad to your computer and use it in GitHub Desktop.
module.exports = {
'can log in at vimeo': function (test) {
'use strict';
test.expect(1)
.open('http://vimeo.com/log_in')
.type('#email', 'foo@bar.com')
.type('#password', 'baz')
.click('.submit .btn')
.assert.text('#page_header h1 a', 'foobar')
.done();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment