Files
flights_web/ClientApp/cypress/support/index.d.ts
T

9 lines
243 B
TypeScript

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