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

chore(tests): circleci - chrome 69 requires chromdriver to 2.44 #5182

Merged
merged 1 commit into from
Mar 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions circle.yml → .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
name: Selenium Start
background: true
command: |
./node_modules/.bin/webdriver-manager update
./node_modules/.bin/webdriver-manager start
./node_modules/.bin/webdriver-manager update --versions.chrome=2.44
./node_modules/.bin/webdriver-manager start --versions.chrome=2.44

- run:
name: TestApp Start
Expand Down
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ gulp.task('tslint', () => {

gulp.task('format:enforce', () => {
return gulp.src(['lib/**/*.ts'])
.pipe(format.checkFormat('file', clangFormat, {verbose: true, fail: true}));
.pipe(format.checkFormat('file', clangFormat,
{verbose: true, fail: true}));
});

gulp.task('lint', gulp.series('tslint', 'format:enforce'));
Expand Down Expand Up @@ -71,7 +72,8 @@ gulp.task('built:copy:typings', () => {
});

gulp.task('webdriver:update', (done) => {
runSpawn(done, 'node', ['bin/webdriver-manager', 'update']);
runSpawn(done, 'node', ['bin/webdriver-manager', 'update',
'--versions.chrome=2.44']);
});

gulp.task('format', () => {
Expand Down