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

Commit faf0895

Browse files
committed
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.
1 parent d77731c commit faf0895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ gulp.task('prepublish', function(done) {
112112

113113
gulp.task('pretest', function(done) {
114114
runSequence('checkVersion',
115-
['webdriver:update', 'tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done);
115+
['tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done);
116116
});
117117

118118
gulp.task('default',['prepublish']);

0 commit comments

Comments
 (0)