test.js 409 B

123456789101112131415
  1. // For authoring Nightwatch tests, see
  2. // http://nightwatchjs.org/guide#usage
  3. module.exports = {
  4. 'default e2e tests': browser => {
  5. browser
  6. .url(process.env.VUE_DEV_SERVER_URL)
  7. .waitForElementVisible('#app', 5000)
  8. .assert.elementPresent('.hello')
  9. .assert.containsText('h1', 'Welcome to Your Vue.js ,样式由less书写')
  10. .assert.elementCount('img', 1)
  11. .end()
  12. }
  13. }