accounts-frontend/tests-e2e/cypress/support/index.d.ts
2019-12-29 16:44:07 +02:00

42 lines
1.0 KiB
TypeScript

/// <reference types="cypress" />
type AccountAlias = 'default' | 'default2';
interface TAccount {
id: number;
username: string;
password: string;
email: string;
token: string;
refreshToken: string;
}
declare namespace Cypress {
interface Chainable {
/**
* Custom command to log in the user
*
* @example cy.login({ accounts: ['default'] })
*/
login(options: {
accounts: AccountAlias[];
/**
* defaults to `true`. if `false` — than only api response will
* be returned without mutating app state
* (useful for custom scenarios such as mocking of other api responses
* or checking whether account is registered)
*/
updateState?: boolean;
/**
* Whether return raw api response without any conversion. Defaults to: `false`
*/
rawApiResp?: boolean;
}): Promise<{ accounts: TAccount[] }>;
getByTestId<S = any>(
id: string,
options?: Partial<Loggable & Timeoutable & Withinable>,
): Chainable<S>;
}
}