diff --git a/e2e/tests/regression/authorization/authenticate-bad-creds-fails.js b/e2e/tests/regression/authorization/authenticate-bad-creds-fails.js deleted file mode 100644 index 0e6b588..0000000 --- a/e2e/tests/regression/authorization/authenticate-bad-creds-fails.js +++ /dev/null @@ -1,22 +0,0 @@ -/// -describe("When authenticating with bad credentials", () => { - it("does not allow a login returns error", () => { - cy.visit("/login"); - - cy.get("input[name=username]").clear().type('notauser'); - - // {enter} causes the form to submit - cy.get("input[name=password]") - .clear() - .type(`notapassword{enter}`); - - // //LOGOUT - // cy.get("[data-cy=navicon]").click(); - // cy.contains("AyaNova SuperUser"); - cy.get("[data-cy=loginbutton_failedcreds]"); - - cy.url().should("include", "/login"); - - //----------------------------------------------------- - }); -});