UNPKG

vue-smart-table

Version:

A table with dynamic components for vue.js

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