mirror of
https://github.com/jgthms/bulma
synced 2026-03-19 03:44:31 -07:00
Update dependencies
This commit is contained in:
22
docs/cypress/e2e/elements/box.spec.js
Normal file
22
docs/cypress/e2e/elements/box.spec.js
Normal file
@@ -0,0 +1,22 @@
|
||||
describe("Elements/Box", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/box/");
|
||||
});
|
||||
|
||||
it("has a Box element", () => {
|
||||
cy.get(".box").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Box", () => {
|
||||
cy.get(".box").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("scheme-main"));
|
||||
expect(cs.borderRadius).to.equal("6px");
|
||||
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"
|
||||
);
|
||||
expect(cs.color).to.equal(Cypress.env("text"));
|
||||
expect(cs.padding).to.equal("20px");
|
||||
});
|
||||
});
|
||||
});
|
||||
124
docs/cypress/e2e/elements/button.spec.js
Normal file
124
docs/cypress/e2e/elements/button.spec.js
Normal file
@@ -0,0 +1,124 @@
|
||||
describe("Elements/Button", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/button/");
|
||||
});
|
||||
|
||||
it("has a Button", () => {
|
||||
cy.get(".button").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Button", () => {
|
||||
cy.get("#button-default").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
|
||||
expect(cs.borderColor).to.equal(Cypress.env("grey-lighter"));
|
||||
expect(cs.borderRadius).to.equal("4px");
|
||||
expect(cs.color).to.equal(Cypress.env("grey-darker"));
|
||||
expect(cs.height).to.equal("40px");
|
||||
expect(cs.lineHeight).to.equal("24px");
|
||||
expect(cs.padding).to.equal("7px 16px");
|
||||
});
|
||||
});
|
||||
|
||||
// States
|
||||
it("has a correct hover Button", () => {
|
||||
cy.get("#button-hover").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
|
||||
expect(cs.borderColor).to.equal(Cypress.env("grey-light"));
|
||||
expect(cs.borderRadius).to.equal("4px");
|
||||
expect(cs.color).to.equal(Cypress.env("grey-darker"));
|
||||
expect(cs.height).to.equal("40px");
|
||||
expect(cs.lineHeight).to.equal("24px");
|
||||
expect(cs.padding).to.equal("7px 16px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct focus Button", () => {
|
||||
cy.get("#button-focus").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
|
||||
expect(cs.borderColor).to.equal(Cypress.env("blue"));
|
||||
expect(cs.borderRadius).to.equal("4px");
|
||||
expect(cs.boxShadow).to.equal(
|
||||
`rgba${Cypress.env("blue").slice(3, -1)}, 0.25) 0px 0px 0px 2px`
|
||||
);
|
||||
expect(cs.color).to.equal(Cypress.env("grey-darker"));
|
||||
expect(cs.height).to.equal("40px");
|
||||
expect(cs.lineHeight).to.equal("24px");
|
||||
expect(cs.padding).to.equal("7px 16px");
|
||||
});
|
||||
});
|
||||
|
||||
// Colors
|
||||
it(`has correct color Buttons`, () => {
|
||||
for (let i = 0; i < Cypress.env("color-names").length; i++) {
|
||||
const name = Cypress.env("color-names")[i];
|
||||
const baseColor = Cypress.env(name);
|
||||
const invertColor = Cypress.env(`${name}-invert`);
|
||||
const lightColor = Cypress.env(`${name}-light`);
|
||||
const darkColor = Cypress.env(`${name}-dark`);
|
||||
|
||||
cy.get(`#button-${name}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(baseColor);
|
||||
expect(cs.borderColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-hover`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-focus`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.boxShadow).to.equal(
|
||||
`rgba${baseColor.slice(3, -1)}, 0.25) 0px 0px 0px 2px`
|
||||
);
|
||||
expect(cs.borderColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-active`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-inverted`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(invertColor);
|
||||
expect(cs.color).to.equal(baseColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-outlined`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.borderColor).to.equal(baseColor);
|
||||
expect(cs.color).to.equal(baseColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-outlined-hover`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(baseColor);
|
||||
expect(cs.borderColor).to.equal(baseColor);
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-inverted-outlined`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.borderColor).to.equal(invertColor);
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#button-${name}-light`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(lightColor);
|
||||
expect(cs.color).to.equal(darkColor);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
159
docs/cypress/e2e/elements/container.spec.js
Normal file
159
docs/cypress/e2e/elements/container.spec.js
Normal file
@@ -0,0 +1,159 @@
|
||||
import { setMobile, setDesktop, setWidescreen, setFullHD } from "../utils";
|
||||
|
||||
describe("Elements/Container", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/container/");
|
||||
});
|
||||
|
||||
it("has a Container element", () => {
|
||||
cy.get("#container").should("exist");
|
||||
});
|
||||
|
||||
it("has fullwidth mobile Containers", () => {
|
||||
setMobile();
|
||||
|
||||
let viewport;
|
||||
|
||||
cy.document()
|
||||
.then((doc) => {
|
||||
return doc.documentElement.getBoundingClientRect();
|
||||
})
|
||||
.then((rect) => {
|
||||
viewport = rect;
|
||||
});
|
||||
|
||||
cy.get("#container").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
|
||||
cy.get("#container-fluid").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
|
||||
cy.get("#container-max-desktop").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
|
||||
cy.get("#container-max-widescreen").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
});
|
||||
|
||||
it("has centered desktop Containers", () => {
|
||||
setDesktop();
|
||||
|
||||
let viewport;
|
||||
|
||||
cy.document()
|
||||
.then((doc) => {
|
||||
return doc.documentElement.getBoundingClientRect();
|
||||
})
|
||||
.then((rect) => {
|
||||
viewport = rect;
|
||||
});
|
||||
|
||||
cy.get("#container").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("960px");
|
||||
});
|
||||
|
||||
cy.get("#container-widescreen").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
|
||||
cy.get("#container-fullhd").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
});
|
||||
|
||||
it("has centered widescreen Containers", () => {
|
||||
setWidescreen();
|
||||
|
||||
let viewport;
|
||||
|
||||
cy.document()
|
||||
.then((doc) => {
|
||||
return doc.documentElement.getBoundingClientRect();
|
||||
})
|
||||
.then((rect) => {
|
||||
viewport = rect;
|
||||
});
|
||||
|
||||
cy.get("#container").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1152px");
|
||||
});
|
||||
|
||||
cy.get("#container-max-desktop").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("960px");
|
||||
});
|
||||
|
||||
cy.get("#container-widescreen").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1152px");
|
||||
});
|
||||
|
||||
cy.get("#container-fullhd").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
});
|
||||
|
||||
it("has centered fullhd Containers", () => {
|
||||
setFullHD();
|
||||
|
||||
cy.get("#container").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1344px");
|
||||
});
|
||||
|
||||
cy.get("#container-max-desktop").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("960px");
|
||||
});
|
||||
|
||||
cy.get("#container-max-widescreen").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1152px");
|
||||
});
|
||||
|
||||
cy.get("#container-widescreen").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1344px");
|
||||
});
|
||||
|
||||
cy.get("#container-fullhd").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("1344px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a fullwidth fluid Container", () => {
|
||||
cy.viewport(
|
||||
Cypress.env("viewports").fullhd[0],
|
||||
Cypress.env("viewports").fullhd[1]
|
||||
);
|
||||
|
||||
let viewport;
|
||||
|
||||
cy.document()
|
||||
.then((doc) => {
|
||||
return doc.documentElement.getBoundingClientRect();
|
||||
})
|
||||
.then((rect) => {
|
||||
viewport = rect;
|
||||
});
|
||||
|
||||
cy.get("#container-fluid").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal(`${viewport.width}px`);
|
||||
});
|
||||
});
|
||||
});
|
||||
68
docs/cypress/e2e/elements/content.spec.js
Normal file
68
docs/cypress/e2e/elements/content.spec.js
Normal file
@@ -0,0 +1,68 @@
|
||||
describe("Elements/Content", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/content/");
|
||||
});
|
||||
|
||||
it("has a Content element", () => {
|
||||
cy.get(".content").should("exist");
|
||||
});
|
||||
|
||||
it("has correct headings", () => {
|
||||
cy.get(".content h1").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("32px");
|
||||
});
|
||||
|
||||
cy.get(".content h2").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("28px");
|
||||
});
|
||||
|
||||
cy.get(".content h3").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("24px");
|
||||
});
|
||||
|
||||
cy.get(".content h4").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("20px");
|
||||
});
|
||||
|
||||
cy.get(".content h5").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("18px");
|
||||
});
|
||||
|
||||
cy.get(".content h6").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("16px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct blockquote", () => {
|
||||
cy.get(".content blockquote").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white-ter"));
|
||||
expect(cs.padding).to.equal("20px 24px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct lists", () => {
|
||||
cy.get(".content ol li").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.listStyleType).to.equal("decimal");
|
||||
});
|
||||
|
||||
cy.get(".content ul li").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.listStyleType).to.equal("disc");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct pre", () => {
|
||||
cy.get(".content pre").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.padding).to.equal("17.5px 21px");
|
||||
});
|
||||
});
|
||||
});
|
||||
60
docs/cypress/e2e/elements/icon.spec.js
Normal file
60
docs/cypress/e2e/elements/icon.spec.js
Normal file
@@ -0,0 +1,60 @@
|
||||
describe("Elements/Icon", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/icon/");
|
||||
});
|
||||
|
||||
it("has a .icon element", () => {
|
||||
cy.get(".icon").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Icon element", () => {
|
||||
cy.get("#icon").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("24px");
|
||||
expect(cs.width).to.equal("24px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Icon sizes", () => {
|
||||
cy.get("#icon-small").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("16px");
|
||||
expect(cs.width).to.equal("16px");
|
||||
});
|
||||
|
||||
cy.get("#icon-normal").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("24px");
|
||||
expect(cs.width).to.equal("24px");
|
||||
});
|
||||
|
||||
cy.get("#icon-medium").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("32px");
|
||||
expect(cs.width).to.equal("32px");
|
||||
});
|
||||
|
||||
cy.get("#icon-large").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("48px");
|
||||
expect(cs.width).to.equal("48px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Icon Text elements", () => {
|
||||
cy.get("#icon-text").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.display).to.equal("inline-flex");
|
||||
});
|
||||
|
||||
cy.get("#icon-text > .icon").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.marginRight).to.equal("4px");
|
||||
});
|
||||
|
||||
cy.get("#icon-text-div").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.display).to.equal("flex");
|
||||
});
|
||||
});
|
||||
});
|
||||
63
docs/cypress/e2e/elements/image.spec.js
Normal file
63
docs/cypress/e2e/elements/image.spec.js
Normal file
@@ -0,0 +1,63 @@
|
||||
describe("Elements/Image", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/image/");
|
||||
});
|
||||
|
||||
it("has a Image", () => {
|
||||
cy.get(".image").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Image", () => {
|
||||
cy.get("#image").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("128px");
|
||||
expect(cs.width).to.equal("128px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct rounded Image", () => {
|
||||
cy.get("#image-rounded img").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderRadius).to.equal("9999px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct Image dimensions", () => {
|
||||
[16, 24, 32, 48, 64, 96, 128].forEach((dimension) => {
|
||||
cy.get(`#image-${dimension}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${dimension}px`);
|
||||
expect(cs.width).to.equal(`${dimension}px`);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Image ratios", () => {
|
||||
[
|
||||
["1by1", 1],
|
||||
["5by4", 0.8],
|
||||
["4by3", 0.75],
|
||||
["3by2", 0.6666],
|
||||
["5by3", 0.6],
|
||||
["16by9", 0.5625],
|
||||
["2by1", 0.5],
|
||||
["3by1", 0.3333],
|
||||
["4by5", 1.25],
|
||||
["3by4", 1.3333],
|
||||
["2by3", 1.5],
|
||||
["3by5", 1.6666],
|
||||
["9by16", 1.7777],
|
||||
["1by2", 2],
|
||||
["1by3", 3],
|
||||
].forEach((ratio) => {
|
||||
cy.get(`#image-${ratio[0]} img`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
const height = cs.height.substring(0, cs.height.length - 2);
|
||||
expect(`${Math.round(height)}px`).to.equal(
|
||||
`${Math.round(100 * ratio[1])}px`
|
||||
);
|
||||
expect(cs.width).to.equal("100px");
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
40
docs/cypress/e2e/elements/notification.spec.js
Normal file
40
docs/cypress/e2e/elements/notification.spec.js
Normal file
@@ -0,0 +1,40 @@
|
||||
describe("Elements/Notification", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/notification/");
|
||||
});
|
||||
|
||||
it("has a Notification element", () => {
|
||||
cy.get("#notification").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Notification", () => {
|
||||
cy.get("#notification").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white-ter"));
|
||||
expect(cs.borderRadius).to.equal("4px");
|
||||
expect(cs.padding).to.equal("20px 40px 20px 24px");
|
||||
});
|
||||
});
|
||||
|
||||
it(`has correct color Notifications`, () => {
|
||||
for (let i = 0; i < Cypress.env("color-names").length; i++) {
|
||||
const name = Cypress.env("color-names")[i];
|
||||
const baseColor = Cypress.env(name);
|
||||
const invertColor = Cypress.env(`${name}-invert`);
|
||||
const lightColor = Cypress.env(`${name}-light`);
|
||||
const darkColor = Cypress.env(`${name}-dark`);
|
||||
|
||||
cy.get(`#notification-${name}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(baseColor);
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#notification-${name}-light`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(lightColor);
|
||||
expect(cs.color).to.equal(darkColor);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
126
docs/cypress/e2e/elements/other.spec.js
Normal file
126
docs/cypress/e2e/elements/other.spec.js
Normal file
@@ -0,0 +1,126 @@
|
||||
describe("Elements/Other", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/other/");
|
||||
});
|
||||
|
||||
it("has a Block element", () => {
|
||||
cy.get(".block").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Block", () => {
|
||||
cy.get("#block").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.marginBottom).to.equal("24px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a Delete element", () => {
|
||||
cy.get(".delete").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Delete", () => {
|
||||
cy.get("#delete").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal("rgba(10, 10, 10, 0.2)");
|
||||
expect(cs.borderColor).to.equal(Cypress.env("grey-dark"));
|
||||
expect(cs.borderStyle).to.equal("none");
|
||||
expect(cs.borderRadius).to.equal("9999px");
|
||||
expect(cs.borderWidth).to.equal("0px");
|
||||
expect(cs.cursor).to.equal("pointer");
|
||||
expect(cs.display).to.equal("inline-block");
|
||||
expect(cs.flexGrow).to.equal("0");
|
||||
expect(cs.flexShrink).to.equal("0");
|
||||
expect(cs.fontSize).to.equal("0px");
|
||||
expect(cs.height).to.equal("20px");
|
||||
expect(cs.maxHeight).to.equal("20px");
|
||||
expect(cs.maxWidth).to.equal("20px");
|
||||
expect(cs.minHeight).to.equal("20px");
|
||||
expect(cs.minWidth).to.equal("20px");
|
||||
expect(cs.outlineColor).to.equal(Cypress.env("grey-dark"));
|
||||
expect(cs.outlineStyle).to.equal("none");
|
||||
expect(cs.outlineWidth).to.equal("0px");
|
||||
expect(cs.pointerEvents).to.equal("auto");
|
||||
expect(cs.position).to.equal("relative");
|
||||
expect(cs.verticalAlign).to.equal("top");
|
||||
expect(cs.width).to.equal("20px");
|
||||
|
||||
const before = window.getComputedStyle($[0], "before");
|
||||
expect(before.backgroundColor).to.equal(Cypress.env("scheme-main"));
|
||||
expect(before.content).to.equal('""');
|
||||
expect(before.display).to.equal("block");
|
||||
expect(before.height).to.equal("2px");
|
||||
expect(before.left).to.equal("10px");
|
||||
expect(before.position).to.equal("absolute");
|
||||
expect(before.top).to.equal("10px");
|
||||
expect(before.width).to.equal("10px");
|
||||
|
||||
const after = window.getComputedStyle($[0], "after");
|
||||
expect(after.backgroundColor).to.equal(Cypress.env("scheme-main"));
|
||||
expect(after.content).to.equal('""');
|
||||
expect(after.display).to.equal("block");
|
||||
expect(after.height).to.equal("10px");
|
||||
expect(after.left).to.equal("10px");
|
||||
expect(after.position).to.equal("absolute");
|
||||
expect(after.top).to.equal("10px");
|
||||
expect(after.width).to.equal("2px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct small Delete", () => {
|
||||
cy.get("#delete-small").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("16px");
|
||||
expect(cs.maxHeight).to.equal("16px");
|
||||
expect(cs.maxWidth).to.equal("16px");
|
||||
expect(cs.minHeight).to.equal("16px");
|
||||
expect(cs.minWidth).to.equal("16px");
|
||||
expect(cs.width).to.equal("16px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct medium Delete", () => {
|
||||
cy.get("#delete-medium").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("24px");
|
||||
expect(cs.maxHeight).to.equal("24px");
|
||||
expect(cs.maxWidth).to.equal("24px");
|
||||
expect(cs.minHeight).to.equal("24px");
|
||||
expect(cs.minWidth).to.equal("24px");
|
||||
expect(cs.width).to.equal("24px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct large Delete", () => {
|
||||
cy.get("#delete-large").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal("32px");
|
||||
expect(cs.maxHeight).to.equal("32px");
|
||||
expect(cs.maxWidth).to.equal("32px");
|
||||
expect(cs.minHeight).to.equal("32px");
|
||||
expect(cs.minWidth).to.equal("32px");
|
||||
expect(cs.width).to.equal("32px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct Loader", () => {
|
||||
cy.get("#loader").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.animationDuration).to.equal("0.5s");
|
||||
expect(cs.animationIterationCount).to.equal("infinite");
|
||||
expect(cs.animationName).to.equal("spinAround");
|
||||
expect(cs.animationTimingFunction).to.equal("linear");
|
||||
expect(cs.borderBottomColor).to.equal(Cypress.env("grey-lighter"));
|
||||
expect(cs.borderLeftColor).to.equal(Cypress.env("grey-lighter"));
|
||||
expect(cs.borderRightColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.borderTopColor).to.equal(Cypress.env("transparent"));
|
||||
expect(cs.borderRadius).to.equal("9999px");
|
||||
expect(cs.borderStyle).to.equal("solid");
|
||||
expect(cs.borderWidth).to.equal("2px");
|
||||
expect(cs.content).to.equal('""');
|
||||
expect(cs.display).to.equal("block");
|
||||
expect(cs.height).to.equal("16px");
|
||||
expect(cs.position).to.equal("relative");
|
||||
expect(cs.width).to.equal("16px");
|
||||
});
|
||||
});
|
||||
});
|
||||
38
docs/cypress/e2e/elements/progress.spec.js
Normal file
38
docs/cypress/e2e/elements/progress.spec.js
Normal file
@@ -0,0 +1,38 @@
|
||||
describe("Elements/Progress", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/progress/");
|
||||
});
|
||||
|
||||
it("has a Progress element", () => {
|
||||
cy.get("#progress").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Progress", () => {
|
||||
cy.get("#progress").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${Cypress.env("sizes").normal}px`);
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Progress sizes", () => {
|
||||
cy.get("#progress-small").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${Cypress.env("sizes").small}px`);
|
||||
});
|
||||
|
||||
cy.get("#progress-normal").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${Cypress.env("sizes").normal}px`);
|
||||
});
|
||||
|
||||
cy.get("#progress-medium").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${Cypress.env("sizes").medium}px`);
|
||||
});
|
||||
|
||||
cy.get("#progress-large").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.height).to.equal(`${Cypress.env("sizes").large}px`);
|
||||
});
|
||||
});
|
||||
});
|
||||
53
docs/cypress/e2e/elements/table.spec.js
Normal file
53
docs/cypress/e2e/elements/table.spec.js
Normal file
@@ -0,0 +1,53 @@
|
||||
describe("Elements/Table", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/table/");
|
||||
});
|
||||
|
||||
it("has a Table element", () => {
|
||||
cy.get("#table").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Table", () => {
|
||||
cy.get("#table").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white"));
|
||||
expect(cs.color).to.equal(Cypress.env("text-strong"));
|
||||
});
|
||||
|
||||
cy.get("#table tr.is-selected").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("primary"));
|
||||
expect(cs.color).to.equal(Cypress.env("primary-invert"));
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct bordered Table", () => {
|
||||
cy.get("#table-bordered th, #table-bordered td").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderWidth).to.equal("1px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct striped Table", () => {
|
||||
cy.get("#table-striped tbody tr:not(.is-selected):nth-child(even)").then(
|
||||
($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white-bis"));
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
it("has a correct narrow Table", () => {
|
||||
cy.get("#table-narrow th, #table-narrow td").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.padding).to.equal("4px 8px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct fullwidth Table", () => {
|
||||
cy.get("#table-fullwidth").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.width).to.equal("800px");
|
||||
});
|
||||
});
|
||||
});
|
||||
107
docs/cypress/e2e/elements/tag.spec.js
Normal file
107
docs/cypress/e2e/elements/tag.spec.js
Normal file
@@ -0,0 +1,107 @@
|
||||
describe("Elements/Tag", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/tag/");
|
||||
});
|
||||
|
||||
it("has a Tag", () => {
|
||||
cy.get(".tag").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Tag", () => {
|
||||
cy.get("#tag").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("white-ter"));
|
||||
expect(cs.borderRadius).to.equal("4px");
|
||||
expect(cs.color).to.equal(Cypress.env("grey-dark"));
|
||||
expect(cs.fontSize).to.equal("12px");
|
||||
expect(cs.height).to.equal("24px");
|
||||
expect(cs.padding).to.equal("0px 9px");
|
||||
});
|
||||
|
||||
cy.get("#tag-rounded").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderRadius).to.equal("9999px");
|
||||
});
|
||||
});
|
||||
|
||||
it("has a correct Tag sizes", () => {
|
||||
cy.get("#tag-normal").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("12px");
|
||||
expect(cs.height).to.equal("24px");
|
||||
});
|
||||
|
||||
cy.get("#tag-medium").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("16px");
|
||||
expect(cs.height).to.equal("32px");
|
||||
});
|
||||
|
||||
cy.get("#tag-large").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("20px");
|
||||
expect(cs.height).to.equal("40px");
|
||||
});
|
||||
});
|
||||
|
||||
// Colors
|
||||
it(`has correct color Tags`, () => {
|
||||
for (let i = 0; i < Cypress.env("color-names").length; i++) {
|
||||
const name = Cypress.env("color-names")[i];
|
||||
const baseColor = Cypress.env(name);
|
||||
const invertColor = Cypress.env(`${name}-invert`);
|
||||
const lightColor = Cypress.env(`${name}-light`);
|
||||
const darkColor = Cypress.env(`${name}-dark`);
|
||||
|
||||
cy.get(`#tag-${name}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(baseColor);
|
||||
expect(cs.color).to.equal(invertColor);
|
||||
});
|
||||
|
||||
cy.get(`#tag-${name}-light`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(lightColor);
|
||||
expect(cs.color).to.equal(darkColor);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it("has correct Tags containers", () => {
|
||||
cy.get("#tags").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.display).to.equal("flex");
|
||||
});
|
||||
|
||||
cy.get("#tags .tag").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.marginBottom).to.equal("8px");
|
||||
});
|
||||
|
||||
cy.get("#tags-medium .tag").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("16px");
|
||||
});
|
||||
|
||||
cy.get("#tags-large .tag").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal("20px");
|
||||
});
|
||||
|
||||
cy.get("#tags-centered").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.justifyContent).to.equal("center");
|
||||
});
|
||||
|
||||
cy.get("#tags-right").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.justifyContent).to.equal("flex-end");
|
||||
});
|
||||
|
||||
cy.get("#tags-addons .tag:nth-child(2)").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.borderRadius).to.equal("0px");
|
||||
expect(cs.marginRight).to.equal("0px");
|
||||
});
|
||||
});
|
||||
});
|
||||
63
docs/cypress/e2e/elements/title.spec.js
Normal file
63
docs/cypress/e2e/elements/title.spec.js
Normal file
@@ -0,0 +1,63 @@
|
||||
describe("Elements/Title", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/elements/title/");
|
||||
});
|
||||
|
||||
it("has a Title", () => {
|
||||
cy.get(".title").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Title", () => {
|
||||
cy.get("#title").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.color).to.equal(Cypress.env("text-strong"));
|
||||
expect(cs.fontSize).to.equal(`${Cypress.env("sizes")["3"]}px`);
|
||||
expect(cs.fontWeight).to.equal("600");
|
||||
expect(cs.lineHeight).to.equal(`${Cypress.env("sizes")["3"] * 1.125}px`);
|
||||
});
|
||||
|
||||
cy.get("#title strong").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.color).to.equal(Cypress.env("text-strong"));
|
||||
expect(cs.fontWeight).to.equal("600");
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Title sizes", () => {
|
||||
for (let i = 1; i <= 7; i++) {
|
||||
cy.get(`#title-${i}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal(`${Cypress.env("sizes")[i]}px`);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it("has a Subtitle", () => {
|
||||
cy.get(".subtitle").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Subtitle", () => {
|
||||
cy.get("#subtitle").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.color).to.equal(Cypress.env("text"));
|
||||
expect(cs.fontSize).to.equal(`${Cypress.env("sizes")["5"]}px`);
|
||||
expect(cs.fontWeight).to.equal("400");
|
||||
expect(cs.lineHeight).to.equal(`${Cypress.env("sizes")["5"] * 1.25}px`);
|
||||
});
|
||||
|
||||
cy.get("#subtitle strong").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.color).to.equal(Cypress.env("text-strong"));
|
||||
expect(cs.fontWeight).to.equal("600");
|
||||
});
|
||||
});
|
||||
|
||||
it("has correct Subtitle sizes", () => {
|
||||
for (let i = 1; i <= 7; i++) {
|
||||
cy.get(`#subtitle-${i}`).then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.fontSize).to.equal(`${Cypress.env("sizes")[i]}px`);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user