Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | // For authoring Nightwatch tests, see |
||
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 |