9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
/// <reference types="cypress" />
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
getByTestId(id: string, timeout?: number): Chainable;
|
|
mockGeolocation({ latitude, longitude }): void;
|
|
forbidGeolocation();
|
|
}
|
|
}
|