Skip to content
Snippets Groups Projects
Unverified Commit bf958b67 authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Add e2e tests to bookmarking in dashboard page (#21059)

parent f80bce03
No related branches found
No related tags found
No related merge requests found
import { restore, sidebar } from "__support__/e2e/cypress";
describe("scenarios > dashboard > bookmarks", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
});
it("should add and then remove bookmark", () => {
cy.visit("/dashboard/1");
cy.icon("ellipsis").click();
cy.findByText("Bookmark").click();
cy.visit("/collection/root");
sidebar().within(() => {
// Find the bookmark and click on it to visit dashboard page again
cy.findByText("Orders in a dashboard").click();
});
cy.icon("ellipsis").click();
cy.findByText("Remove bookmark").click();
cy.intercept("GET", "/api/collection/root/items?**").as(
"fetchRootCollectionItems",
);
cy.visit("/collection/root");
cy.wait("@fetchRootCollectionItems");
sidebar().within(() => {
cy.findByText("Orders in a dashboard").should("not.exist");
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment