mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-28 12:24:23 +00:00
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
|
describe("Components/Menu", () => {
|
||
|
beforeEach(() => {
|
||
|
cy.visit("http://127.0.0.1:4000/cyp/components/menu/");
|
||
|
});
|
||
|
|
||
|
it("has a Menu", () => {
|
||
|
cy.get(".menu").should("exist");
|
||
|
});
|
||
|
|
||
|
it("has a correct Menu", () => {
|
||
|
cy.get("#menu").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.fontSize).to.equal("16px");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("has a correct Menu List", () => {
|
||
|
cy.get("#menu .menu-list").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.lineHeight).to.equal("20px");
|
||
|
});
|
||
|
|
||
|
cy.get("#menu .menu-list a").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.borderRadius).to.equal("2px");
|
||
|
expect(cs.color).to.equal(Cypress.env("text"));
|
||
|
expect(cs.display).to.equal("block");
|
||
|
expect(cs.padding).to.equal("8px 12px");
|
||
|
});
|
||
|
|
||
|
cy.get("#menu .menu-list a.is-active").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.backgroundColor).to.equal(Cypress.env("link"));
|
||
|
expect(cs.color).to.equal(Cypress.env("link-invert"));
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("has a correct nested Menu List", () => {
|
||
|
cy.get("#menu .menu-list ul").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.borderLeftColor).to.equal(Cypress.env("border"));
|
||
|
expect(cs.borderLeftStyle).to.equal("solid");
|
||
|
expect(cs.borderLeftWidth).to.equal("1px");
|
||
|
expect(cs.margin).to.equal("12px");
|
||
|
expect(cs.paddingLeft).to.equal("12px");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it("has a correct Menu Label", () => {
|
||
|
cy.get("#menu .menu-label").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.color).to.equal(Cypress.env("text-light"));
|
||
|
expect(cs.fontSize).to.equal("12px");
|
||
|
expect(cs.letterSpacing).to.equal("1.2px");
|
||
|
expect(cs.textTransform).to.equal("uppercase");
|
||
|
});
|
||
|
|
||
|
cy.get("#menu .menu-label:not(:first-child)").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.marginTop).to.equal("12px");
|
||
|
});
|
||
|
|
||
|
cy.get("#menu .menu-label:not(:last-child)").then(($) => {
|
||
|
const cs = window.getComputedStyle($[0]);
|
||
|
expect(cs.marginBottom).to.equal("12px");
|
||
|
});
|
||
|
});
|
||
|
});
|