mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
17 lines
604 B
TypeScript
17 lines
604 B
TypeScript
// Load type definitions that come with Cypress module
|
|
/// <reference types="cypress" />
|
|
|
|
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(email: string, password: string): void;
|
|
signup(email: string, firstName: string, lastName: string, password: string): void;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|