-
-
Save ruanyl/987b095a53e895577bde to your computer and use it in GitHub Desktop.
This file contains hidden or 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
module.exports = { | |
'can log in at vimeo': function (test) { | |
'use strict'; | |
test.expect(1) | |
.open('http://vimeo.com/log_in') | |
.type('#email', '[email protected]') | |
.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