From: Jeremy Thomas Date: Fri, 5 Nov 2021 19:11:10 +0000 (+0000) Subject: Add media specs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6df351f2a5e62193040189d2fb7be611d6ca59b6;p=thirdparty%2Fbulma.git Add media specs --- diff --git a/docs/cyp/layout/media.html b/docs/cyp/layout/media.html new file mode 100644 index 000000000..b4667dbba --- /dev/null +++ b/docs/cyp/layout/media.html @@ -0,0 +1,108 @@ +--- +layout: cypress +title: Components/Media +--- + +
+
+

+ +

+
+ +
+
+

+ John Smith @johnsmith 31m +
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ornare magna eros, eu pellentesque tortor vestibulum ut. Maecenas non massa sem. Etiam finibus odio quis feugiat facilisis. +

+
+ + +
+ +
+ +
+
+ +
+
+

+ +

+
+ +
+
+

+ Barbara Middleton +
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis porta eros lacus, nec ultricies elit blandit non. Suspendisse pellentesque mauris sit amet dolor blandit rutrum. Nunc in tempus turpis. +
+ Like · Reply · 3 hrs +

+
+ +
+
+

+ +

+
+ +
+
+

+ Sean Brown +
+ Donec sollicitudin urna eget eros malesuada sagittis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aliquam blandit nisl a nulla sagittis, a lobortis leo feugiat. +
+ Like · Reply · 2 hrs +

+
+ +
+ Vivamus quis semper metus, non tincidunt dolor. Vivamus in mi eu lorem cursus ullamcorper sit amet nec massa. +
+ +
+ Morbi vitae diam et purus tincidunt porttitor vel vitae augue. Praesent malesuada metus sed pharetra euismod. Cras tellus odio, tincidunt iaculis diam non, porta aliquet tortor. +
+
+
+ +
+
+

+ +

+
+ +
+
+

+ Kayli Eunice +
+ Sed convallis scelerisque mauris, non pulvinar nunc mattis vel. Maecenas varius felis sit amet magna vestibulum euismod malesuada cursus libero. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Phasellus lacinia non nisl id feugiat. +
+ Like · Reply · 2 hrs +

+
+
+
+
+
diff --git a/docs/cypress/integration/layout/media.spec.js b/docs/cypress/integration/layout/media.spec.js new file mode 100644 index 000000000..27eb33a12 --- /dev/null +++ b/docs/cypress/integration/layout/media.spec.js @@ -0,0 +1,52 @@ +describe("Components/Media", () => { + beforeEach(() => { + cy.visit("http://127.0.0.1:4000/cyp/layout/media/"); + }); + + it("has a Media", () => { + cy.get(".media").should("exist"); + }); + + it("has a correct Media", () => { + cy.get("#media").then(($) => { + const cs = window.getComputedStyle($[0]); + expect(cs.alignItems).to.equal("flex-start"); + expect(cs.display).to.equal("flex"); + }); + }); + + it("has a correct nested Media", () => { + cy.get("#media-nested .media-content .media + .media").then(($) => { + const cs = window.getComputedStyle($[0]); + expect(cs.borderTopColor).to.equal("rgba(219, 219, 219, 0.5)"); + expect(cs.borderTopStyle).to.equal("solid"); + expect(cs.borderTopWidth).to.equal("1px"); + expect(cs.marginTop).to.equal("8px"); + expect(cs.paddingTop).to.equal("8px"); + }); + }); + + it("has a correct Media Content", () => { + cy.get("#media .media-content").then(($) => { + const cs = window.getComputedStyle($[0]); + expect(cs.flexGrow).to.equal("1"); + expect(cs.flexShrink).to.equal("1"); + }); + }); + + it("has correct Media Left and Right", () => { + cy.get("#media .media-left").then(($) => { + const cs = window.getComputedStyle($[0]); + expect(cs.flexGrow).to.equal("0"); + expect(cs.flexShrink).to.equal("0"); + expect(cs.marginRight).to.equal("16px"); + }); + + cy.get("#media .media-right").then(($) => { + const cs = window.getComputedStyle($[0]); + expect(cs.flexGrow).to.equal("0"); + expect(cs.flexShrink).to.equal("0"); + expect(cs.marginLeft).to.equal("16px"); + }); + }); +});