Files
vue-chartjs/test/e2e/specs/test.js
Jakub Juszczak 0820ba63b3 🎉 Initial commit
2016-06-26 15:24:29 +02:00

15 lines
372 B
JavaScript

// For authoring Nightwatch tests, see
// http://nightwatchjs.org/guide#usage
module.exports = {
'default e2e tests': function (browser) {
browser
.url('http://localhost:8080')
.waitForElementVisible('#app', 5000)
.assert.elementPresent('.logo')
.assert.containsText('h1', 'Hello World!')
.assert.elementCount('p', 3)
.end()
}
}