nervmag/tests/e2e/specs/test.js

14 lines
329 B
JavaScript

// For authoring Nightwatch tests, see
// http://nightwatchjs.org/guide#usage
module.exports = {
'default e2e tests': browser => {
browser
.url(process.env.VUE_DEV_SERVER_URL)
.waitForElementVisible('#app', 5000)
.assert.elementPresent('.nervmag')
.assert.elementCount('img', 0)
.end()
}
}