22 lines
548 B
TypeScript
22 lines
548 B
TypeScript
|
|
import '@testing-library/cypress/add-commands';
|
||
|
|
|
||
|
|
// Custom commands
|
||
|
|
Cypress.Commands.add('login', (email: string, password: string) => {
|
||
|
|
cy.session([email, password], () => {
|
||
|
|
cy.visit('/sign-in');
|
||
|
|
cy.get('input[name="email"]').type(email);
|
||
|
|
cy.get('input[name="password"]').type(password);
|
||
|
|
cy.get('button[type="submit"]').click();
|
||
|
|
cy.url().should('not.include', '/sign-in');
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
namespace Cypress {
|
||
|
|
interface Chainable {
|
||
|
|
login(email: string, password: string): Chainable<void>;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|