Files
redash/client/cypress/integration/user/logout_spec.js
Levko Kravets 98a5154345 Fix headless mode (didn't work with vertical navbar) (#4977)
* Fix headless mode (didn't work with vertical navbar)

* Fix header margins on public dashboard page

* Fix test
2020-06-17 11:10:12 +03:00

18 lines
450 B
JavaScript

describe("Logout", () => {
beforeEach(() => {
cy.login();
cy.visit("/");
});
it("shows login page after logout", () => {
cy.getByTestId("ProfileDropdown").click();
// Wait until submenu appears and become interactive
cy.wait(500); // eslint-disable-line cypress/no-unnecessary-waiting
cy.getByTestId("LogOutButton")
.should("be.visible")
.click();
cy.title().should("eq", "Login to Redash");
});
});