16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
context.skip("Dozzle light mode", { baseUrl: Cypress.env("DOZZLE_DEFAULT") }, () => {
|
|
before(() => {
|
|
cy.visit("/settings");
|
|
cy.contains("Use light theme").click();
|
|
});
|
|
beforeEach(() => {
|
|
cy.visit("/");
|
|
});
|
|
|
|
it("home screen", () => {
|
|
cy.get("li.running", { timeout: 10000 }).removeDates().matchImageSnapshot();
|
|
});
|
|
});
|