From 7b5bf2235fa6cbf0f7f1e287df1c8d2c6eba0296 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Mon, 12 Mar 2018 09:19:50 +0100 Subject: [PATCH] renamed e2e tasks to call docker task instead of docker-rebuild --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 7c9be4d95..e1b3df473 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;