diff --git a/gulpfile.js b/gulpfile.js index 7c9be4d95e..e1b3df473c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -63,11 +63,11 @@ gulp.task('services-only', async () => { /** * Runs the e2e tests, restoring the fixtures first. */ -gulp.task('e2e', ['docker-rebuild'], async () => { +gulp.task('e2e', ['docker'], async () => { await runSequenceP('e2e-only'); }); -gulp.task('smokes', ['docker-rebuild'], async () => { +gulp.task('smokes', ['docker'], async () => { await runSequenceP('smokes-only'); }); @@ -416,7 +416,7 @@ gulp.task('docker', async () => { * Does the minium effort to start the docker, if it doesn't exists calls * the 'docker-run' task, if it is started does nothing. Keep in mind that when * you do not rebuild the docker you may be using an outdated version of it. - * See the 'docker-rebuild' task for more info. + * See the 'docker' task for more info. */ gulp.task('docker-start', async () => { let state;