From faf0895fc746ad1017883afc683c6ed40c947e5f Mon Sep 17 00:00:00 2001 From: Michael Giambalvo Date: Fri, 24 Jan 2020 22:38:38 -0800 Subject: [PATCH] fix(ci): Don't update webdriver in pretest Doing this automatically means we can't pin the version of webdriver that we use in CI. Instead, we run update in the circle config. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8bfc65c0c..2e5a6982f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -112,7 +112,7 @@ gulp.task('prepublish', function(done) { gulp.task('pretest', function(done) { runSequence('checkVersion', - ['webdriver:update', 'tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done); + ['tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done); }); gulp.task('default',['prepublish']);