Files
redash/client/cypress/integration/group/group_list_spec.js
Gabriel Dutra 29582e3212 Run prettier on cypress folder (#4510)
* Run prettier on cypress folder

* Test Restyled

* Revert "Test Restyled"

This reverts commit 13d43968fe.
2019-12-30 19:40:56 +02:00

16 lines
319 B
JavaScript

describe("Group List", () => {
beforeEach(() => {
cy.login();
cy.visit("/groups");
});
it("renders the page and takes a screenshot", () => {
cy.getByTestId("GroupList")
.should("exist")
.and("contain", "admin")
.and("contain", "default");
cy.percySnapshot("Groups");
});
});