migration from cypress 9 to cypress 10

This commit is contained in:
2022-08-07 19:26:07 +00:00
parent 38572219bc
commit 8f37876a9d
31 changed files with 41 additions and 32 deletions

View File

@@ -0,0 +1,12 @@
/// <reference types="cypress" />
describe("Login nav menu", () => {
it("should display user name", () => {
cy.ayLogin("accounting");
//open nav pane
cy.get("[data-cy=navicon]").click();
cy.contains("- Accounting"); //part of name displayed at top
//-----------------------------------------------------
});
});