renamed e2e tasks to call docker task instead of docker-rebuild

This commit is contained in:
Carlos Jimenez 2018-03-12 09:19:50 +01:00
parent 9c487cc31c
commit 7b5bf2235f
1 changed files with 3 additions and 3 deletions

View File

@ -63,11 +63,11 @@ gulp.task('services-only', async () => {
/** /**
* Runs the e2e tests, restoring the fixtures first. * Runs the e2e tests, restoring the fixtures first.
*/ */
gulp.task('e2e', ['docker-rebuild'], async () => { gulp.task('e2e', ['docker'], async () => {
await runSequenceP('e2e-only'); await runSequenceP('e2e-only');
}); });
gulp.task('smokes', ['docker-rebuild'], async () => { gulp.task('smokes', ['docker'], async () => {
await runSequenceP('smokes-only'); 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 * 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 * 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. * 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 () => { gulp.task('docker-start', async () => {
let state; let state;