Build/Vue/tests/e2e/specs/test.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 11
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
eloc 9
nc 1
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A test.js ➔ ??? 0 9 1
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