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

#15339 Repro: Admin can't see other users' personal sub-collections (#15346)

parent 0b27758a
Branches
Tags
No related merge requests found
......@@ -53,6 +53,15 @@ describe("personal collections", () => {
cy.icon("pencil");
cy.icon("lock").should("not.exist");
});
it.skip("should be able view other users' personal sub-collections (metabase#15339)", () => {
cy.visit("/collection/5");
cy.icon("new_folder").click();
cy.findByLabelText("Name").type("Foo");
cy.findByText("Create").click();
// This repro could possibly change depending on the design decision for this feature implementation
cy.get("[class*=CollectionSidebar]").findByText("Foo");
});
});
describe("all users", () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment