Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 8aa40a2

Browse files
chore(build): fix protractor version
1 parent 14de438 commit 8aa40a2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"build": "node scripts/build"
66
},
77
"devDependencies": {
8+
"eslint": "^3.9.1",
89
"http-server": "*",
9-
"protractor": "~2.5",
10-
"selenium-webdriver": "~2.47.0"
10+
"protractor": "^4.0.10"
1111
}
1212
}

protractorConf.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
exports.config = {
2-
seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.47.1.jar',
3-
seleniumArgs: [],
42
baseUrl: process.env.ANGULAR_HOME_HOST || 'http://angularjs.org',
53
capabilities: {
64
'browserName': 'chrome'
75
},
6+
directConnect: true,
87
specs: [
98
'test/angularjs.org.spec.js',
109
],

0 commit comments

Comments
 (0)