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

Repro #25543 : Collection list fails to display if there's an invalid...

Repro #25543 : Collection list fails to display if there's an invalid parameter in a question (#25868)
parent f1e72f42
No related branches found
No related tags found
No related merge requests found
......@@ -199,6 +199,17 @@ describe("scenarios > collection defaults", () => {
cy.signInAsAdmin();
});
it.skip("should show list of collection items even if one question has invalid parameters (metabase#25543)", () => {
const questionDetails = {
native: { query: "select 1 --[[]]", "template-tags": {} },
};
cy.createNativeQuestion(questionDetails);
visitRootCollection();
cy.findByText("Orders in a dashboard");
});
it("should be able to drag an item to the root collection (metabase#16498)", () => {
moveItemToCollection("Orders", "First collection");
......
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