Passed
Push — vuejs ( c44247...4ee33f )
by Benjamin
04:51
created

test.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 8
nc 1
nop 1
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
// For authoring Nightwatch tests, see
2
// http://nightwatchjs.org/guide#usage
3
4
module.exports = {
5
  'default e2e tests': browser => {
6
    browser
7
      .url(process.env.VUE_DEV_SERVER_URL)
8
      .waitForElementVisible('#app', 5000)
9
      .assert.elementPresent('.hello')
10
      .assert.containsText('h1', 'Welcome to Your Vue.js + TypeScript App')
11
      .assert.elementCount('img', 1)
12
      .end()
13
  }
14
};
15