| 4 | // eslint-disable-next-line @typescript-eslint/no-namespace |
| 5 | namespace Cypress { |
| 6 | interface Chainable { |
| 7 | /** |
| 8 | * Custom command to login to PostHog |
| 9 | */ |
| 10 | login(): Chainable<Element> |
| 11 | |
| 12 | /** |
| 13 | * Custom command to click a navigation menu item |
| 14 | * @example cy.clickNavMenu('dashboards') |
| 15 | */ |
| 16 | clickNavMenu(name: string): Chainable<Element> |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 |
no outgoing calls
no test coverage detected
searching dependent graphs…