From 635c93bc12058b573d7ecbba7dc51f0a0b9112cb Mon Sep 17 00:00:00 2001 From: Tch1b0 Date: Sun, 30 Jun 2024 11:46:01 +0200 Subject: [PATCH] fix test --- tests/e2e/support/support.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/support/support.ts b/tests/e2e/support/support.ts index 6fbaad7..e0671c0 100644 --- a/tests/e2e/support/support.ts +++ b/tests/e2e/support/support.ts @@ -2,7 +2,7 @@ // @ts-ignore Cypress.Commands.add("login", () => { cy.visit("/admin/login"); - cy.wait(200); + cy.wait(1000); cy.fixture("admin").then((credentials) => { cy.get("input").first().type(credentials["username"]); cy.get("input").last().type(credentials["password"]);