This commit is contained in:
2021-12-21 16:19:38 +00:00
parent f18cea9ef3
commit 3644da98ad
21 changed files with 105 additions and 171 deletions

View File

@@ -1,20 +1,12 @@
/// <reference types="cypress" />
describe.skip("When Accounting user logs in", () => {
it("should set up accounting block user options", () => {
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
//USER OPTIONS
cy.get("[data-cy=home]").click();
cy.get("[data-cy='nav/home-user-settings']").click();
cy.url().should("include", "/home-user-settings");
cy.get("[data-cy='nativeDateTimeInput']").check({ force: true });
//END OF TEST
//-----------------------------------------------------
});
});