From 688de372de459440cfa16020508cac7a44c62159 Mon Sep 17 00:00:00 2001 From: ayalaben Date: Thu, 23 Aug 2018 13:38:49 +0300 Subject: Search Workflow by name BDD test Change-Id: I759678da1864470e0d1baadb10f27c1f11918633 Issue-ID: SDC-1662 Signed-off-by: ayalaben --- workflow-bdd/stepDefinitions/General_Steps.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'workflow-bdd/stepDefinitions/General_Steps.js') 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); }); /** -- cgit 1.2.3-korg