diff options
author | ayalaben <ayala.benzvi@amdocs.com> | 2018-08-23 13:38:49 +0300 |
---|---|---|
committer | ayalaben <ayala.benzvi@amdocs.com> | 2018-08-23 13:38:49 +0300 |
commit | 688de372de459440cfa16020508cac7a44c62159 (patch) | |
tree | fa6cf1a0e5e94515ac318e3d528e9c85db692dd3 /workflow-bdd/stepDefinitions/InputData_steps.js | |
parent | 093c852f3cec47bbeb19a32083b1ecbb0d5b493d (diff) |
Search Workflow by name BDD test
Change-Id: I759678da1864470e0d1baadb10f27c1f11918633
Issue-ID: SDC-1662
Signed-off-by: ayalaben <ayala.benzvi@amdocs.com>
Diffstat (limited to 'workflow-bdd/stepDefinitions/InputData_steps.js')
-rw-r--r-- | workflow-bdd/stepDefinitions/InputData_steps.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/workflow-bdd/stepDefinitions/InputData_steps.js b/workflow-bdd/stepDefinitions/InputData_steps.js index 6263bb73..7fee19a2 100644 --- a/workflow-bdd/stepDefinitions/InputData_steps.js +++ b/workflow-bdd/stepDefinitions/InputData_steps.js @@ -19,6 +19,11 @@ const _ = require('lodash'); const fs = require('fs'); const util = require('./Utils.js'); +function getPath(path, context) { + let compiled = _.template(path); + return compiled(context); +} + /** * @module InputData * @description creates an ampty input data object @@ -59,7 +64,8 @@ When('I want to set the input data to file {string}', function (string) { * @step I want to update the input property {string} with value {string} **/ Then('I want to update the input property {string} with value {string}', function(string, string2) { - _.set(this.context.inputData, string, string2); + let value = getPath(string2, this.context); + _.set(this.context.inputData, string, value); }); /** |