From 014e1b455f1dcd878210e65e2f493c3a6bd93095 Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Mon, 30 Aug 2021 14:58:21 +0200 Subject: [PATCH] MOBILE-3833 DX: Implement watch-behat gulp task --- gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 9f3f5f93f..31db54239 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -69,3 +69,7 @@ gulp.task('watch', () => { gulp.watch(['./tests/behat'], { interval: 500 }, gulp.parallel('behat')); } }); + +gulp.task('watch-behat', () => { + gulp.watch(['./tests/behat'], { interval: 500 }, gulp.parallel('behat')); +});