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

#16784 Repro: The list of collections available on homepage "Our analytics"...

#16784 Repro: The list of collections available on homepage "Our analytics" depends on the name of the first 50 objects (#16806)
parent e0094242
Branches
Tags
No related merge requests found
......@@ -6,6 +6,7 @@ import {
openOrdersTable,
sidebar,
} from "__support__/e2e/cypress";
import _ from "underscore";
import { USERS, USER_GROUPS } from "__support__/e2e/cypress_data";
const { nocollection } = USERS;
......@@ -578,6 +579,16 @@ describe("scenarios > collection_defaults", () => {
});
});
});
it.skip("collections list on the home page shouldn't depend on the name of the first 50 objects (metabase#16784)", () => {
// Although there are already some objects in the default snapshot (3 questions, 1 dashboard, 3 collections),
// let's create 50 more dashboards with the letter of alphabet `D` coming before the first letter of the existing collection `F`.
_.times(50, i => cy.createDashboard(`Dashboard ${i}`));
cy.visit("/");
// There is already a collection named "First collection" in the default snapshot
cy.findByText("First collection");
});
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment