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

Repro #20815: Models should not be embeddable (#20819)

parent 63d22fdb
No related branches found
No related tags found
No related merge requests found
......@@ -164,6 +164,17 @@ describe("scenarios > embedding > smoke tests", () => {
});
});
});
it.skip("should not offer to share or embed models (metabase#20815)", () => {
cy.intercept("POST", "/api/dataset").as("dataset");
cy.request("PUT", "/api/card/1", { dataset: true });
cy.visit("/model/1");
cy.wait("@dataset");
cy.icon("share").should("not.exist");
});
});
function resetEmbedding() {
......
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