// Load type definitions that come with Cypress module
///
declare global {
namespace Cypress {
interface Chainable {
getByTestId(selector: string, ...args: (Partial | undefined)[]): Chainable>
findChildByTestId(childTestId: string): Chainable>
createFixtureWorkflow(fixtureKey: string, workflowName: string): void;
signin(email: string, password: string): void;
// todo: rename to setup
signup(email: string, firstName: string, lastName: string, password: string): void;
skipSetup(): void;
}
}
}
export {};