Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit ef7f3e1

Browse files
committed
chore(test): move element_spec.js off of the control flow
Update circleci to support async await. For the basicConf test suite: - Only run the element_spec test in the Protractor config, we will add back other specs as we migrate the basicConf off of the control flow. - In the Protractor configuration file, set `SELENIUM_PROMISE_MANAGER` to false. - Refactor to use async / await. - Refactor `var` to use either `const` or `let`.
1 parent 71e2cb8 commit ef7f3e1

File tree

8 files changed

+976
-506
lines changed

8 files changed

+976
-506
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- "6"
54
- "8"
65
- "10"
76

@@ -25,9 +24,9 @@ matrix:
2524
- env: "JOB=bstack"
2625
exclude:
2726
- env: JOB=smoke
28-
node_js: "7"
27+
node_js: "8"
2928
- env: JOB=bstack
30-
node_js: "7"
29+
node_js: "8"
3130

3231
addons:
3332
apt:

circle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:6.14-browsers
5+
- image: circleci/node:10.13-browsers
66
environment:
77
# Fix issue with selenium-server in containers.
88
# See http://github.com/SeleniumHQ/docker-selenium/issues/87
@@ -52,8 +52,8 @@ jobs:
5252
name: Selenium Start
5353
background: true
5454
command: |
55-
./node_modules/.bin/webdriver-manager update
56-
./node_modules/.bin/webdriver-manager start
55+
./node_modules/.bin/webdriver-manager-replacement update --gecko false
56+
./node_modules/.bin/webdriver-manager-replacement start --gecko false
5757
5858
- run:
5959
name: TestApp Start

0 commit comments

Comments
 (0)