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/General_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/General_Steps.js')
-rw-r--r-- | workflow-bdd/stepDefinitions/General_Steps.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/workflow-bdd/stepDefinitions/General_Steps.js b/workflow-bdd/stepDefinitions/General_Steps.js index 5968d406..1ceea647 100644 --- a/workflow-bdd/stepDefinitions/General_Steps.js +++ b/workflow-bdd/stepDefinitions/General_Steps.js @@ -166,7 +166,8 @@ Then('I want to check property {string} does not exist', function(string) { **/ Then('I want to check in the list {string} property {string} with value {string} exists', function(listPath, propertyPath, value) { var list = _.get(this.context.responseData, listPath); - assert.notEqual(list.find(element => _.get(element, propertyPath) === value), undefined); + let valueCheck = getPath(value, this.context); + assert.notEqual(list.find(element => _.get(element, propertyPath) === valueCheck), undefined); }); /** |