Skip to content
Snippets Groups Projects
Unverified Commit 17346495 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Search E2E test: ensure that the People table is really loaded (#21117)

parent 3392437a
Branches
Tags
No related merge requests found
......@@ -4,11 +4,16 @@ describe(`search > recently viewed`, () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
cy.intercept("POST", "/api/dataset").as("dataset");
});
it("shows list of recently viewed items", () => {
cy.visit("/browse/1-sample-database");
// "People" table
cy.findByTextEnsureVisible("People").click();
cy.wait("@dataset");
cy.findByTextEnsureVisible("Address");
// "Orders" question
cy.visit("/question/1");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment