Skip to content
Snippets Groups Projects
Unverified Commit a0cdaae7 authored by Jessica DeWitt's avatar Jessica DeWitt Committed by GitHub
Browse files

Repro/auto dashboards (#12931)

* outline for issue

* x-ray load test

* move file location

* issue fixed and checks for content

* added ;s
parent a792f145
No related branches found
No related tags found
No related merge requests found
import { restore, signInAsAdmin } from "../../../__support__/cypress";
describe("scenarios > x-rays", () => {
before(restore);
beforeEach(signInAsAdmin);
it("should exist on homepage when person first signs in", () => {
cy.visit("/");
cy.contains("A look at your People table");
cy.contains("A look at your Orders table");
cy.contains("A look at your Products table");
cy.contains("A look at your Reviews table");
});
it("should be populated", () => {
cy.visit("/");
cy.findByText("People table").click();
cy.findByText("Something's gone wrong").should("not.exist");
cy.findByText("Here's an overview of the people in your People table");
cy.findByText("Overview");
cy.findByText("Per state");
cy.get(".Card").should("have.length", 11);
});
});
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