mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
15 lines
456 B
TypeScript
15 lines
456 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>>
|
||
|
signin(email: string, password: string): void;
|
||
|
signup(email: string, firstName: string, lastName: string, password: string): void;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|