mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
3028ad3c61
🎨 Format root-level dirs
40 lines
1 KiB
TypeScript
40 lines
1 KiB
TypeScript
// Load type definitions that come with Cypress module
|
|
/// <reference types="cypress" />
|
|
|
|
interface SigninPayload {
|
|
email: string;
|
|
password: string;
|
|
}
|
|
|
|
interface SetupPayload {
|
|
email: string;
|
|
password: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
}
|
|
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
getByTestId(
|
|
selector: string,
|
|
...args: (Partial<Loggable & Timeoutable & Withinable & Shadow> | undefined)[]
|
|
): Chainable<JQuery<HTMLElement>>;
|
|
findChildByTestId(childTestId: string): Chainable<JQuery<HTMLElement>>;
|
|
createFixtureWorkflow(fixtureKey: string, workflowName: string): void;
|
|
signin(payload: SigninPayload): void;
|
|
setup(payload: SetupPayload): void;
|
|
setupOwner(payload: SetupPayload): void;
|
|
skipSetup(): void;
|
|
resetAll(): void;
|
|
waitForLoad(): void;
|
|
grantBrowserPermissions(...permissions: string[]): void;
|
|
readClipboard(): Chainable<string>;
|
|
paste(pastePayload: string): void;
|
|
drag(selector: string, xDiff: number, yDiff: number): void;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|