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

#18021 Repro: "Recents" list in search should display the Verified badge (#18080)

parent 9784b89f
No related branches found
No related tags found
No related merge requests found
import { restore } from "__support__/e2e/cypress";
describe.skip("issue 18021", () => {
beforeEach(() => {
// Run the test only for EE version
cy.onlyOn(!!Cypress.env("HAS_ENTERPRISE_TOKEN"));
restore();
cy.signInAsAdmin();
cy.request("POST", "/api/moderation-review", {
status: "verified",
moderated_item_id: 1,
moderated_item_type: "card",
});
cy.visit("/question/1");
cy.findByTestId("saved-question-header-button").find(".Icon-verified");
});
it("should show verified badge in the 'Recently viewed' list (metabase#18021)", () => {
cy.findByPlaceholderText("Search…").click();
cy.findByText("Recently viewed")
.parent()
.within(() => {
cy.findByText("Orders")
.closest("a")
.find(".Icon-verified");
});
});
});
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