Skip to content

Instantly share code, notes, and snippets.

@mezz
Created July 31, 2014 23:30
Show Gist options
  • Save mezz/ccaa46bf9271014ba939 to your computer and use it in GitHub Desktop.
Save mezz/ccaa46bf9271014ba939 to your computer and use it in GitHub Desktop.
simpleTest.js
'use strict';
module.exports = {
'Google Exists': function (test) {
test.open('http://www.google.com')
.wait(10000)
.assert.visible('#main')
.done();
},
'Google still Exists' : function (test) {
test.open('http://www.google.com')
.wait(10000)
.assert.visible('#main')
.done();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment