Skip to content
Snippets Groups Projects
Unverified Commit 69fd5b73 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

[E2E] Fix broken `collections` tests (#24010)

* Fix broken collection tests

* Merge related tests together

- #16555 is not relevant anymore
- add repro for #20716
parent e7b4dc62
No related branches found
No related tags found
No related merge requests found
......@@ -258,25 +258,19 @@ describe("scenarios > collection defaults", () => {
cy.signIn("nocollection");
});
it("should not render collections in items list if user doesn't have collection access (metabase#16555)", () => {
cy.visit("/collection/root");
// Since this user doesn't have access rights to the root collection, it should render empty
cy.findByTestId("collection-empty-state");
});
it("should see a child collection in a sidebar even with revoked access to its parent (metabase#14114)", () => {
it("should see a child collection in a sidebar even with revoked access to its parents (metabase#14114, metabase#16555, metabase#20716)", () => {
cy.visit("/");
navigationSidebar().within(() => {
cy.findByText("Our analytics").click();
});
navigationSidebar().within(() => {
cy.findByText("Our analytics");
cy.findByText("Child");
cy.findByText("Our analytics").should("not.exist");
cy.findByText("Parent").should("not.exist");
cy.findByText("Child");
cy.findByText("Your personal collection");
});
// Even if user tries to navigate directly to the root collection, we have to make sure its content is not shown
cy.visit("/collection/root");
cy.findByText("You don't have permissions to do that.");
});
it("should be able to choose a child collection when saving a question (metabase#14052)", () => {
......
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