From 8e5e4ef1da4f82dea1e4cad52184c16a084e2e80 Mon Sep 17 00:00:00 2001 From: Robbie Blaine Date: Tue, 27 Feb 2024 11:35:54 +0200 Subject: [PATCH] Remove unneeded sleep --- cypress/e2e/opportunities.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/opportunities.cy.ts b/cypress/e2e/opportunities.cy.ts index 2216ccf84..af22892f7 100644 --- a/cypress/e2e/opportunities.cy.ts +++ b/cypress/e2e/opportunities.cy.ts @@ -71,7 +71,6 @@ describe(`Opportunities`, function () { }); //* step 1: fill out form and click next - cy.wait(2000); cy.get("input[name=title]").type(`Test Opportunity ${this.magicNumber}`); cy.get("input[id=input_typeid]").type("Learning{enter}"); cy.get("input[id=input_categories]").type("Agriculture{enter}Business and Entrepreneurship{enter}"); @@ -124,6 +123,7 @@ describe(`Opportunities`, function () { cy.get("button[type=submit]").should("exist").click(); //* step 6: fill out form and click next + // Enabling Credential Issuance requires access to CloudAPI cy.get("input[name=credentialIssuanceEnabled]").click(); cy.wait(500); cy.get("input[id=input_ssiSchemaName]").type("Default{enter}");