vuetable-2
Version:
Datatable component for Vue 2.x
15 lines (13 loc) • 384 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 Vue!')
.assert.elementCount('p', 3)
.end()
}
}