diff --git a/test/e2e-cypress/e2e/features/try-it-out-reset.cy.js b/test/e2e-cypress/e2e/features/try-it-out-reset.cy.js index 3d91c4b59b0..e87363f28ce 100644 --- a/test/e2e-cypress/e2e/features/try-it-out-reset.cy.js +++ b/test/e2e-cypress/e2e/features/try-it-out-reset.cy.js @@ -23,5 +23,10 @@ describe("Reset button in try it out", () => { .should("have.value", "12345") .get(`.parameters[data-property-name="email"] input[type=text]`) .should("have.value", "jsmith@business.com") + .get(".btn.execute") + .click() + .get(".curl-command") + .contains("name=default%20name&badgeid=12345&email=jsmith%40business.com") + .should("exist") }) })