From aad2781298db9c48ef4be167709b905af39bf9e4 Mon Sep 17 00:00:00 2001 From: ayalaben Date: Sun, 18 Feb 2018 10:03:22 +0200 Subject: Flow Tests - delete item and Toggle Change-Id: I73ed5fdc13891b3ad56ab5c8f00083bf8f7d13f3 Issue-ID: SDC-1034 Signed-off-by: ayalaben --- openecomp-bdd/stepDefinitions/VSP_steps.js | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'openecomp-bdd/stepDefinitions/VSP_steps.js') diff --git a/openecomp-bdd/stepDefinitions/VSP_steps.js b/openecomp-bdd/stepDefinitions/VSP_steps.js index b957e6f723..bed8921a3c 100644 --- a/openecomp-bdd/stepDefinitions/VSP_steps.js +++ b/openecomp-bdd/stepDefinitions/VSP_steps.js @@ -107,4 +107,15 @@ Then('I want to add a component', function () { When('I want to get the package for this Item to path {string}', function (string, callback) { let path = '/vendor-software-products/packages/' + this.context.item.id; return [util.download(this.context, path, string, callback)]; +}); + + +/** + * @module VSP + * @exampleFile DeleteVSPDraft.feature + * @step I want to delete this VSP + **/ +Then('I want to delete this VSP', function() { + let path = '/vendor-software-products/' + this.context.item.id ; + return util.request(this.context, 'DELETE', path); }); \ No newline at end of file -- cgit 1.2.3-korg