chore: cleanup e2e useless code

This commit is contained in:
DarkSky 2022-08-16 18:53:48 +08:00
parent b682e55596
commit ecbd7f37c0

View File

@ -12,14 +12,14 @@
declare namespace Cypress { declare namespace Cypress {
// eslint-disable-next-line @typescript-eslint/no-unused-vars // eslint-disable-next-line @typescript-eslint/no-unused-vars
interface Chainable<Subject> { interface Chainable<Subject> {
login(email: string, password: string): void; // login(email: string, password: string): void;
} }
} }
// //
// -- This is a parent command -- // -- This is a parent command --
Cypress.Commands.add('login', (email, password) => { // Cypress.Commands.add('login', (email, password) => {
console.log('Custom command example: Login', email, password); // console.log('Custom command example: Login', email, password);
}); // });
// //
// -- This is a child command -- // -- This is a child command --
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })