Skip to content

Commit d3221f1

Browse files
committed
Revert "test: only call browser.end on the last test"
This reverts commit 4b3ba89.
1 parent 4b3ba89 commit d3221f1

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

e2e/nightwatch.config.js

-12
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,6 @@ module.exports = {
5454
},
5555
},
5656

57-
// TODO: generate these and add skip tags
58-
'chrome-headless': {
59-
desiredCapabilities: {
60-
browserName: 'chrome',
61-
acceptSslCerts: true,
62-
chromeOptions: {
63-
w3c: false,
64-
args: ['window-size=1280,800', 'headless'],
65-
},
66-
},
67-
},
68-
6957
safari: {
7058
desiredCapabilities: {
7159
browserName: 'safari',

e2e/specs/hash.js

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ module.exports = {
3737
// the unencoded version, no check for the url because changes based on browser
3838
.click('li:nth-child(5) a')
3939
.assert.containsText('#param', 'é')
40+
41+
.end()
4042
},
4143

4244
/** @type {import('nightwatch').NightwatchTest} */

e2e/specs/modal.js

+8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ module.exports = {
1919
.assert.urlEquals(baseURL + '/users/1')
2020
.assert.visible('dialog')
2121
.assert.containsText('dialog', 'User #1')
22+
23+
.end()
2224
},
2325

2426
/** @type {import('nightwatch').NightwatchTest} */
@@ -42,6 +44,8 @@ module.exports = {
4244
.forward()
4345
.assert.visible('dialog')
4446
.assert.urlEquals(baseURL + '/users/1')
47+
48+
.end()
4549
},
4650

4751
/** @type {import('nightwatch').NightwatchTest} */
@@ -61,6 +65,8 @@ module.exports = {
6165
.assert.urlEquals(baseURL + '/')
6266
.assert.containsText('h1', 'Home')
6367
.assert.not.visible('dialog')
68+
69+
.end()
6470
},
6571

6672
/** @type {import('nightwatch').NightwatchTest} */
@@ -118,6 +124,8 @@ module.exports = {
118124
.forward()
119125
.assert.urlEquals(baseURL + '/users/1')
120126
.assert.visible('dialog')
127+
128+
.end()
121129
},
122130

123131
/** @type {import('nightwatch').NightwatchTest} */

0 commit comments

Comments
 (0)