Added cucumber test for skip_waypoint feature

This commit is contained in:
Denis Chaplygin
2019-09-23 11:38:33 +03:00
parent a6097cdc01
commit d25a530942
3 changed files with 32 additions and 3 deletions
+5
View File
@@ -12,4 +12,9 @@ module.exports = function () {
q.awaitAll(callback);
});
this.Given(/^skip waypoints$/, (callback) => {
this.queryParams['skip_waypoints'] = true;
callback();
});
};