Skip to content

Instantly share code, notes, and snippets.

@maxhoheiser
Created March 30, 2022 09:33
Show Gist options
  • Save maxhoheiser/84878b296aa1efeb98dc086be432c236 to your computer and use it in GitHub Desktop.
Save maxhoheiser/84878b296aa1efeb98dc086be432c236 to your computer and use it in GitHub Desktop.
Example cypress custom command
import "@testing-library/cypress/add-commands";
Cypress.Commands.add("login", () => {
cy.visit(`/`);
cy.findByRole("button", {
name: "Connect Wallet",
})
.click()
.then(() => {
cy.acceptMetamaskAccess().should("be.true");
cy.confirmMetamaskSignatureRequest().should("be.true");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment