| 4 | declare global { |
| 5 | namespace Cypress { |
| 6 | interface Chainable { |
| 7 | /** |
| 8 | * Custom command to sign in with a given email address |
| 9 | * @example cy.signInWithEmail('user@example.com') |
| 10 | */ |
| 11 | signInWithEmail(emailAddress: string): Chainable<Element>; |
| 12 | |
| 13 | /** |
| 14 | * Custom command to sign in with the link emailed to the given email address |
| 15 | * @example cy.signInUsingEmailedLink('user@example.com') |
| 16 | */ |
| 17 | signInUsingEmailedLink(emailAddress: string): Chainable<Element>; |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 |
no outgoing calls
no test coverage detected