From 3e03797b636d440c04ea27da2e4e2633bb22c764 Mon Sep 17 00:00:00 2001 From: Ivan Belikov Date: Wed, 22 May 2024 13:42:08 +0900 Subject: [PATCH] chore: false security warning --- apps/docs/cypress/support/commands.ts | 8 ++++---- apps/tester/cypress/support/commands.ts | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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) => { ... })