aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-bdd/stepDefinitions/General_Steps.js
diff options
context:
space:
mode:
Diffstat (limited to 'workflow-bdd/stepDefinitions/General_Steps.js')
-rw-r--r--workflow-bdd/stepDefinitions/General_Steps.js3
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);
});
/**