myFirstTest.js 167 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 module.exports = { 'Page title is correct': function (test) { test .open('http://google.com') .assert.title().is('Google', 'It has title') .done(); } };