bulma/docs/cypress/e2e/components/modal.spec.js
2022-11-23 17:09:26 +00:00

96 lines
3.3 KiB
JavaScript

describe("Components/Modal", () => {
beforeEach(() => {
cy.visit("http://127.0.0.1:4000/cyp/components/modal/");
});
it("has a Modal", () => {
cy.get(".modal").should("exist");
});
it("has a correct Modal", () => {
cy.get("#modal").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.display).to.equal("none");
expect(cs.flexDirection).to.equal("column");
expect(cs.overflow).to.equal("hidden");
expect(cs.position).to.equal("fixed");
expect(cs.zIndex).to.equal("40");
});
cy.get("#modal-active").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.display).to.equal("flex");
});
});
it("has a correct Modal Background", () => {
cy.get("#modal .modal-background").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.backgroundColor).to.equal("rgba(10, 10, 10, 0.86)");
expect(cs.position).to.equal("absolute");
});
});
it("has a correct Modal Content", () => {
cy.get("#modal .modal-content").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.margin).to.equal("0px auto");
expect(cs.width).to.equal("640px");
});
});
it("has a correct Modal Card", () => {
cy.get("#modal-card .modal-card").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.display).to.equal("flex");
});
cy.get("#modal-card .modal-card-head, #modal-card .modal-card-foot").then(
($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.backgroundColor).to.equal(Cypress.env("white-ter"));
expect(cs.display).to.equal("flex");
expect(cs.flexShrink).to.equal("0");
expect(cs.padding).to.equal("20px");
expect(cs.position).to.equal("relative");
}
);
cy.get("#modal-card .modal-card-head").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.borderBottomColor).to.equal(Cypress.env("border"));
expect(cs.borderBottomStyle).to.equal("solid");
expect(cs.borderBottomWidth).to.equal("1px");
expect(cs.borderTopLeftRadius).to.equal("6px");
expect(cs.borderTopRightRadius).to.equal("6px");
});
cy.get("#modal-card .modal-card-foot").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.borderTopColor).to.equal(Cypress.env("border"));
expect(cs.borderTopStyle).to.equal("solid");
expect(cs.borderTopWidth).to.equal("1px");
expect(cs.borderBottomLeftRadius).to.equal("6px");
expect(cs.borderBottomRightRadius).to.equal("6px");
});
cy.get("#modal-card .modal-card-title").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.color).to.equal(Cypress.env("text-strong"));
expect(cs.flexGrow).to.equal("1");
expect(cs.flexShrink).to.equal("0");
expect(cs.fontSize).to.equal("24px");
expect(cs.lineHeight).to.equal("24px");
});
cy.get("#modal-card .modal-card-body").then(($) => {
const cs = window.getComputedStyle($[0]);
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
expect(cs.flexGrow).to.equal("1");
expect(cs.flexShrink).to.equal("1");
expect(cs.overflow).to.equal("auto");
expect(cs.padding).to.equal("20px");
});
});
});