test.js 392 B

1234567891011121314
  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 App")
  10. .assert.elementCount("img", 1)
  11. .end();
  12. }
  13. };