mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
|
|
/// <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>>;
|
||
|
|
}
|
||
|
|
}
|