mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00: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 {};
|