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

#15591 Repro: Data selector popover is too small (#15597)

parent 8384a1c1
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,34 @@ describe("scenarios > question > new", () => {
cy.signInAsAdmin();
});
it.skip("data selector popover should not be too small (metabase#15591)", () => {
// Add 10 more databases
for (let i = 0; i < 10; i++) {
cy.request("POST", "/api/database", {
engine: "h2",
name: "Sample" + i,
details: {
db:
"zip:./target/uberjar/metabase.jar!/sample-dataset.db;USER=GUEST;PASSWORD=guest",
},
auto_run_queries: false,
is_full_sync: false,
schedules: {},
});
}
// First test UI for Simple question
cy.visit("/question/new");
cy.findByText("Simple question").click();
cy.findByText("Pick your data");
cy.findByText("Sample3").isVisibleInPopover();
// Then move to the Custom question UI
cy.visit("/question/new");
cy.findByText("Custom question").click();
cy.findByText("Sample3").isVisibleInPopover();
});
describe("browse data", () => {
it("should load orders table and summarize", () => {
cy.visit("/");
......
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