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

[E2E] Skip test that manually adds H2 database (#25160)

* Skip test that manually adds H2 database

* Use custom action instead
parent e56f6450
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,7 @@ describe("scenarios > question > new", () => {
it("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-database.db;USER=GUEST;PASSWORD=guest",
},
auto_run_queries: false,
is_full_sync: false,
schedules: {},
});
cy.addH2SampleDatabase({ name: "Sample" + i });
}
startNewQuestion();
......
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