mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-28 12:24:23 +00:00
77 lines
2.6 KiB
JavaScript
77 lines
2.6 KiB
JavaScript
describe("Components/Card", () => {
|
|
beforeEach(() => {
|
|
cy.visit("http://127.0.0.1:4000/cyp/components/card/");
|
|
});
|
|
|
|
it("has a Card", () => {
|
|
cy.get(".card").should("exist");
|
|
});
|
|
|
|
it("has a correct Card", () => {
|
|
cy.get("#card").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
|
|
expect(cs.color).to.equal(Cypress.env("text"));
|
|
expect(cs.boxShadow).to.equal(
|
|
"rgba(10, 10, 10, 0.1) 0px 8px 16px -2px, rgba(10, 10, 10, 0.02) 0px 0px 0px 1px"
|
|
);
|
|
});
|
|
});
|
|
|
|
it("has correct Card Item border-radius", () => {
|
|
cy.get("#card-only-content > .card-content:first-child").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.borderTopLeftRadius).to.equal("4px");
|
|
expect(cs.borderTopRightRadius).to.equal("4px");
|
|
});
|
|
|
|
cy.get("#card-only-content > .card-content:last-child").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.borderBottomLeftRadius).to.equal("4px");
|
|
expect(cs.borderBottomRightRadius).to.equal("4px");
|
|
});
|
|
});
|
|
|
|
it("has correct Card Header", () => {
|
|
cy.get("#card-header-content > .card-header").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.backgroundColor).to.equal(Cypress.env("transparent"));
|
|
expect(cs.boxShadow).to.equal("rgba(10, 10, 10, 0.1) 0px 2px 4px 0px");
|
|
});
|
|
|
|
cy.get("#card-header-content .card-header-title").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.color).to.equal(Cypress.env("text-strong"));
|
|
expect(cs.fontWeight).to.equal("700");
|
|
expect(cs.padding).to.equal("12px 16px");
|
|
});
|
|
|
|
cy.get("#card-header-content .card-header-icon").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.padding).to.equal("12px 16px");
|
|
});
|
|
});
|
|
|
|
it("has correct Card Content", () => {
|
|
cy.get("#card .card-content").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.padding).to.equal("24px");
|
|
});
|
|
});
|
|
|
|
it("has correct Card Footer", () => {
|
|
cy.get("#card .card-footer").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.backgroundColor).to.equal(Cypress.env("transparent"));
|
|
expect(cs.borderTopColor).to.equal(Cypress.env("grey-lightest"));
|
|
expect(cs.borderTopStyle).to.equal("solid");
|
|
expect(cs.borderTopWidth).to.equal("1px");
|
|
});
|
|
|
|
cy.get("#card .card-footer-item").then(($) => {
|
|
const cs = window.getComputedStyle($[0]);
|
|
expect(cs.padding).to.equal("12px");
|
|
});
|
|
});
|
|
});
|