aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-bdd/stepDefinitions/world.js
diff options
context:
space:
mode:
authortalig <talig@amdocs.com>2018-07-15 15:41:31 +0300
committertalig <talig@amdocs.com>2018-07-15 15:41:31 +0300
commit39c01dd3ccb69f53d2e9350994e25f6e64412aa4 (patch)
tree35e083da4f89b54aa51c1188a36365096500dfdc /workflow-bdd/stepDefinitions/world.js
parentdfdaff5a207726a25a1625a4af88eaededd46a7c (diff)
Get and update workflow version state
Remove redundant controller interfaces, rename WorkflowVersionStatus to State Change-Id: I8ddc9cd656fc8bed607c68aa326c7fa7d2980116 Issue-ID: SDC-1503 Signed-off-by: talig <talig@amdocs.com>
Diffstat (limited to 'workflow-bdd/stepDefinitions/world.js')
-rw-r--r--workflow-bdd/stepDefinitions/world.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/workflow-bdd/stepDefinitions/world.js b/workflow-bdd/stepDefinitions/world.js
index 4ef03813..cf749e66 100644
--- a/workflow-bdd/stepDefinitions/world.js
+++ b/workflow-bdd/stepDefinitions/world.js
@@ -38,9 +38,6 @@ var {setDefaultTimeout} = require('cucumber');
*<Br>
* Contains the following items:<br>
* <li>this.context.server <ul>REST server and onboarding prefix including version. set either in configuration file or from the command line or SERVER environment variable</ul>
- * <li>this.context.vlm <ul>When a VLM has been created, this has the an id and versionId set to the correct IDs.</ul>
- * <li>this.context.vsp <ul>When a VSP has been created, this has the an id and versionId and componentId set to the correct IDs.</ul>
- * <li>this.context.item <ul>When a VLM or VSP has been created, this has the an id and versionId set to the correct IDs.</ul>
* <li>this.context <ul>Object with properties that were saved in the steps.</ul>
* <li>this.context.inputdata <ul><b>Automatically updated with the last responseData from the Rest call</b><br>Object with properties that were prepares in the steps.</ul>
* <li>this.context.responseData <ul>Response from the last REST call.</ul>
@@ -57,8 +54,6 @@ class CustomWorld {
}
}
- this.context.vlm = {id: null, versionId: null};
- this.context.vsp = {id: null, versionId: null};
this.context.item = {id: null, versionId: null, componentId: null};
this.context.shouldFail = false;