mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-11 22:32:18 +05:30
15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
/**
|
|
* Custom command to log in the user
|
|
*
|
|
* @example cy.login(account)
|
|
*/
|
|
login(options: {
|
|
account: 'default' | 'default2';
|
|
}): Promise<{ [key: string]: any }>;
|
|
}
|
|
}
|