Skip to content

Commit

Permalink
Remove unneeded sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 committed Feb 27, 2024
1 parent 64dbc8f commit d552095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/opportunities.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}");
Expand Down Expand Up @@ -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}");
Expand Down

0 comments on commit d552095

Please sign in to comment.