mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
16 lines
429 B
JavaScript
16 lines
429 B
JavaScript
describe("Settings", () => {
|
|
beforeEach(() => {
|
|
cy.login();
|
|
cy.visit("/settings/general");
|
|
});
|
|
|
|
it("renders the page and takes a screenshot", () => {
|
|
cy.getByTestId("OrganizationSettings").within(() => {
|
|
cy.getByTestId("DateFormatSelect").should("contain", "DD/MM/YY");
|
|
cy.getByTestId("TimeFormatSelect").should("contain", "HH:mm");
|
|
});
|
|
|
|
cy.percySnapshot("Organization Settings");
|
|
});
|
|
});
|