saleor-dashboard/cypress/e2e/login.js
Karolina Rakoczy 056b3501eb
Update Cypress Version (#2080)
* Update Cypress Version

* sparete specs with coma

* change workflows to use latest cypress verion
2022-06-08 12:33:11 +04:00

45 lines
1.4 KiB
JavaScript

/// <reference types="cypress"/>
/// <reference types="../support"/>
import { LOGIN_SELECTORS } from "../elements/account/login-selectors";
import { HOMEPAGE_SELECTORS } from "../elements/homePage/homePage-selectors";
import { urlList } from "../fixtures/urlList";
import filterTests from "../support/filterTests";
filterTests({ definedTags: ["all"] }, () => {
describe("User authorization", () => {
beforeEach(() => {
cy.clearSessionData();
});
it("should successfully log in an user", () => {
cy.visit(urlList.homePage);
cy.loginUser();
cy.get(LOGIN_SELECTORS.welcomePage).should("be.visible");
});
it("should fail for wrong password", () => {
cy.visit(urlList.homePage)
.get(LOGIN_SELECTORS.emailAddressInput)
.type("admin@example.com")
.get(LOGIN_SELECTORS.emailPasswordInput)
.type("wrong-password")
.get(LOGIN_SELECTORS.signInButton)
.click()
.get(LOGIN_SELECTORS.warningCredentialMessage)
.should("be.visible");
});
it("should successfully log out an user", () => {
cy.clearSessionData()
.loginUserViaRequest()
.visit(urlList.homePage)
.get(LOGIN_SELECTORS.userMenu)
.click()
.get(LOGIN_SELECTORS.logOutButton)
.click()
.get(LOGIN_SELECTORS.emailAddressInput)
.should("be.visible");
});
});
});