From 2eae460b31f66fa332b74adba4fa049953fdbb33 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Tue, 8 Oct 2019 14:35:48 +0200 Subject: [PATCH] Fix integration test --- client/cypress/support/commands.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/cypress/support/commands.js b/client/cypress/support/commands.js index 6b6335a7..faaebc76 100644 --- a/client/cypress/support/commands.js +++ b/client/cypress/support/commands.js @@ -39,10 +39,6 @@ Cypress.Commands.add("login", (username, password, visitLogin=false) => { cy.get('[data-cy=login-button]').click(); }); -Cypress.Commands.add("clearCookies", () => { - cy.clearCookies(); -}); - Cypress.Commands.add("logout", () => { cy.get('[data-cy=user-icon]').click(); cy.get('[data-cy=logout]').click();