Skip to content

Commit

Permalink
Don't enable Credential Issuance
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 committed Feb 27, 2024
1 parent 64dbc8f commit e02af9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 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,9 +123,10 @@ describe(`Opportunities`, function () {
cy.get("button[type=submit]").should("exist").click();

//* step 6: fill out form and click next
cy.get("input[name=credentialIssuanceEnabled]").click();
cy.wait(500);
cy.get("input[id=input_ssiSchemaName]").type("Default{enter}");
// 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}");

cy.get("button[type=submit]").should("exist").click();

Expand Down

0 comments on commit e02af9c

Please sign in to comment.