13 lines
329 B
JavaScript
13 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()
|
|
}
|
|
}
|