added logic to set the vahallaAdminDB var.

This commit is contained in:
Greg Knisely 2018-03-16 17:06:27 -04:00
parent f4cde36f36
commit 49be8b00f3

View File

@ -13,6 +13,11 @@ module.exports = function () {
callback(); callback();
}); });
this.Given(/^the valhalla admin db "(.*?)"$/, (args, callback) => {
this.vahallaAdminDB = this.expandOptions(args);
callback();
});
this.Given(/^the extract extra arguments "(.*?)"$/, (args, callback) => { this.Given(/^the extract extra arguments "(.*?)"$/, (args, callback) => {
this.extractArgs = this.expandOptions(args); this.extractArgs = this.expandOptions(args);
callback(); callback();