Skip to content

Commit e8a382e

Browse files
committed
ci: add ie via browserstack
1 parent 39c38d5 commit e8a382e

File tree

5 files changed

+33
-10
lines changed

5 files changed

+33
-10
lines changed

.circleci/config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ jobs:
5555
at: ~/project
5656
- run: npm run test:e2e
5757

58+
test-e2e-browserstack:
59+
<<: *defaults
60+
steps:
61+
- attach_workspace:
62+
at: ~/project
63+
- run: npm run test:e2e:ci
64+
5865
workflows:
5966
version: 2
6067
install-and-parallel-test:
@@ -69,3 +76,6 @@ workflows:
6976
- test-e2e:
7077
requires:
7178
- install
79+
- test-e2e-browserstack:
80+
requires:
81+
- install

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ yarn-error.log
1414
.env
1515
selenium-server.log
1616
local.log
17+
browserstack.err

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"test": "npm run lint && npm run flow && npm run test:unit && npm run test:e2e && npm run test:types",
3333
"flow": "flow check",
3434
"test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
35-
"test:e2e": "node test/e2e/runner.js -e firefox,chrome -c test/e2e/nightwatch.config.js",
35+
"test:e2e": "node test/e2e/runner.js",
36+
"test:e2e:ci": "node test/e2e/runner.js --local -e ie -c test/e2e/nightwatch.browserstack.js test/e2e/specs/basic.js",
37+
"test:e2e:ff": "node test/e2e/runner.js -e firefox -c test/e2e/nightwatch.config.js",
3638
"test:types": "tsc -p types/test",
3739
"docs": "vuepress dev docs",
3840
"docs:build": "vuepress build docs",

test/e2e/nightwatch.browserstack.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
const BS_USER = process.env.BS_USER
66
const BS_KEY = process.env.BS_KEY
7+
const isCI = process.env.CI
78

89
if (!BS_USER || !BS_KEY) {
910
console.log(
@@ -12,7 +13,8 @@ if (!BS_USER || !BS_KEY) {
1213
'If you are a contributor, this is normal, credentials are private. These tests must be run by a maintainer of vue-router',
1314
'If you are a maintainer, you forgot to `source keys.env`!'
1415
)
15-
process.exit(0)
16+
// fail if testing locally
17+
process.exit(isCI ? 0 : 1)
1618
}
1719

1820
const nwConf = {
@@ -58,13 +60,22 @@ const nwConf = {
5860
}
5961
},
6062

61-
ie: {
63+
ie9: {
6264
desiredCapabilities: {
6365
browser: 'internet explorer',
6466
browser_version: '9'
6567
// name: 'Bstack-[Nightwatch] Vue Router',
6668
// 'browserstack.video': true
6769
}
70+
},
71+
72+
ie: {
73+
desiredCapabilities: {
74+
browser: 'internet explorer',
75+
browser_version: '11'
76+
// name: 'Bstack-[Nightwatch] Vue Router',
77+
// 'browserstack.video': true
78+
}
6879
}
6980
}
7081
}

test/e2e/runner.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -84,27 +84,26 @@ if (isLocal) {
8484
let bsLocal
8585
const browserstack = require('browserstack-local')
8686
Nightwatch.bs_local = bsLocal = new browserstack.Local()
87-
bsLocal.start({ key: process.env.BS_KEY }, function (error) {
87+
bsLocal.start({ key: process.env.BS_KEY }, error => {
8888
if (error) throw error
8989

9090
console.log('Connected. Now testing...')
9191
try {
92-
Nightwatch.cli(function (argv) {
92+
Nightwatch.cli(argv => {
9393
adaptArgv(argv)
94-
console.log(argv)
9594
Nightwatch.CliRunner(argv)
96-
.setup(null, function () {
95+
.setup(null, () => {
9796
// NOTE: I don't know when this is running or if it does
9897
// Code to stop browserstack local after end of parallel test
99-
bsLocal.stop(function () {
98+
bsLocal.stop(() => {
10099
server && server.close()
101100
process.exit(0)
102101
})
103102
})
104103
.runTests()
105104
.then(() => {
106105
// Code to stop browserstack local after end of single test
107-
bsLocal.stop(function () {
106+
bsLocal.stop(() => {
108107
server && server.close()
109108
process.exit(0)
110109
})
@@ -124,7 +123,7 @@ if (isLocal) {
124123
})
125124
} else {
126125
// create the Nightwatch CLI runner
127-
Nightwatch.cli(function (argv) {
126+
Nightwatch.cli(argv => {
128127
adaptArgv(argv)
129128
const runner = Nightwatch.CliRunner(argv)
130129

0 commit comments

Comments
 (0)