mirror of
https://github.com/jgthms/bulma
synced 2026-03-22 21:14:30 -07:00
Update dependencies
This commit is contained in:
17
docs/cypress/e2e/layout/footer.spec.js
Normal file
17
docs/cypress/e2e/layout/footer.spec.js
Normal file
@@ -0,0 +1,17 @@
|
||||
describe("Layout/Footer", () => {
|
||||
beforeEach(() => {
|
||||
cy.visit("http://127.0.0.1:4000/cyp/layout/footer/");
|
||||
});
|
||||
|
||||
it("has a Footer", () => {
|
||||
cy.get(".footer").should("exist");
|
||||
});
|
||||
|
||||
it("has a correct Footer", () => {
|
||||
cy.get("#footer").then(($) => {
|
||||
const cs = window.getComputedStyle($[0]);
|
||||
expect(cs.backgroundColor).to.equal(Cypress.env("scheme-main-bis"));
|
||||
expect(cs.padding).to.equal("48px 24px 96px");
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user