mirror of
https://github.com/getredash/redash.git
synced 2025-12-21 10:25:33 -05:00
* Run prettier on cypress folder
* Test Restyled
* Revert "Test Restyled"
This reverts commit 13d43968fe.
16 lines
319 B
JavaScript
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");
|
|
});
|
|
});
|