umami/cypress/support/index.d.ts

12 lines
272 B
TypeScript
Raw Normal View History

2024-02-28 05:41:34 +00:00
/// <reference types="cypress" />
declare namespace Cypress {
interface Chainable {
/**
* Custom command to select DOM element by data-cy attribute.
* @example cy.dataCy('greeting')
*/
dataCy(value: string): Chainable<JQuery<HTMLElement>>;
}
}