diff --git a/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateAppWithSameName_spec.js b/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateAppWithSameName_spec.js
new file mode 100644
index 0000000000..7d0404578c
--- /dev/null
+++ b/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateAppWithSameName_spec.js
@@ -0,0 +1,20 @@
+///
+
+describe("Create org and a new app / delete and recreate app", function() {
+ let orgid;
+ let appid;
+
+ it("create app within an org and delete and re-create another app with same name", function() {
+ cy.NavigateToHome();
+ cy.generateUUID().then(uid => {
+ orgid = uid;
+ appid = uid;
+ localStorage.setItem("OrgName", orgid);
+ cy.createOrg(orgid);
+ cy.CreateAppForOrg(orgid, appid);
+ cy.DeleteAppByApi();
+ cy.NavigateToHome();
+ cy.CreateAppForOrg(orgid, appid);
+ });
+ });
+});
diff --git a/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateDuplicateAppWithinOrg_spec.js b/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateDuplicateAppWithinOrg_spec.js
index 92d16d5d54..41692b1e3c 100644
--- a/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateDuplicateAppWithinOrg_spec.js
+++ b/app/client/cypress/integration/Smoke_TestSuite/OrganisationTests/CreateDuplicateAppWithinOrg_spec.js
@@ -1,10 +1,10 @@
///
-describe("Create new org and an app within the same", function () {
+describe("Create new org and an app within the same", function() {
let orgid;
let appid;
- it("create multiple apps and validate", function () {
+ it("create multiple apps and validate", function() {
cy.NavigateToHome();
cy.generateUUID().then(uid => {
orgid = uid;
@@ -12,9 +12,6 @@ describe("Create new org and an app within the same", function () {
localStorage.setItem("OrgName", orgid);
cy.createOrg(orgid);
cy.CreateAppForOrg(orgid, appid);
- cy.DeleteAppByApi();
- cy.NavigateToHome();
- cy.CreateAppForOrg(orgid, appid);
cy.NavigateToHome();
cy.CreateApp(appid);
});