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

Commit 1b9c24e

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 1b9c24e

File tree

7 files changed

+974
-501
lines changed

7 files changed

+974
-501
lines changed

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)