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

#15256 Repro: "Duplicate" dashboard modal says it "failed", when it actually...

#15256 Repro: "Duplicate" dashboard modal says it "failed", when it actually did duplicate successfully (#15257)
parent 2310b739
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,38 @@ describe("collection permissions", () => {
cy.server();
});
describe("item management", () => {
Object.entries(PERMISSIONS).forEach(([permission, userGroup]) => {
context(`${permission} access`, () => {
userGroup.forEach(user => {
onlyOn(permission === "curate", () => {
describe(`${user} user`, () => {
beforeEach(() => {
cy.signIn(user);
});
it.skip("should be able to duplicate the dashboard without obstructions from the modal (metabase#15256)", () => {
cy.visit("/collection/root");
openEllipsisMenuFor("Orders in a dashboard");
cy.findByText("Duplicate this item").click();
cy.get(".Modal")
.as("modal")
.within(() => {
cy.findByRole("button", { name: "Duplicate" })
.should("not.be.disabled")
.click();
cy.findByText("Failed").should("not.exist");
});
cy.get("@modal").should("not.exist");
cy.findByText("Orders in a dashboard - Duplicate");
});
});
});
});
});
});
});
describe("revision history", () => {
beforeEach(() => {
cy.route("POST", "/api/revision/revert").as("revert");
......@@ -70,3 +102,11 @@ function clickRevert(event_name) {
.findByText(/Revert/i)
.click();
}
function openEllipsisMenuFor(item, index = 0) {
cy.findAllByText(item)
.eq(index)
.closest("a")
.find(".Icon-ellipsis")
.click({ force: true });
}
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