MOBILE-3833 DX: Implement watch-behat gulp task

This commit is contained in:
Noel De Martin 2021-08-30 14:58:21 +02:00
parent 770b8bd98a
commit 014e1b455f

View File

@ -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'));
});