diff --git a/apps/docs/cypress/support/commands.ts b/apps/docs/cypress/support/commands.ts index c421a3c..5894949 100644 --- a/apps/docs/cypress/support/commands.ts +++ b/apps/docs/cypress/support/commands.ts @@ -14,14 +14,14 @@ declare namespace Cypress { // eslint-disable-next-line @typescript-eslint/no-unused-vars interface Chainable { - login(email: string, password: string): void; + // login(email: string, password: string): void; } } // -- This is a parent command -- -Cypress.Commands.add('login', (email, password) => { - console.log('Custom command example: Login', email, password); -}); +// Cypress.Commands.add('login', (email, password) => { +// console.log('Custom command example: Login', email, password); +// }); // // -- This is a child command -- // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) diff --git a/apps/tester/cypress/support/commands.ts b/apps/tester/cypress/support/commands.ts index c421a3c..5894949 100644 --- a/apps/tester/cypress/support/commands.ts +++ b/apps/tester/cypress/support/commands.ts @@ -14,14 +14,14 @@ declare namespace Cypress { // eslint-disable-next-line @typescript-eslint/no-unused-vars interface Chainable { - login(email: string, password: string): void; + // login(email: string, password: string): void; } } // -- This is a parent command -- -Cypress.Commands.add('login', (email, password) => { - console.log('Custom command example: Login', email, password); -}); +// Cypress.Commands.add('login', (email, password) => { +// console.log('Custom command example: Login', email, password); +// }); // // -- This is a child command -- // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })