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

Commit

Permalink
fix(ci): Don't update webdriver in pretest
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
heathkit committed Jan 27, 2020
1 parent d77731c commit faf0895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);

0 comments on commit faf0895

Please sign in to comment.