// Mockup https://www.figma.com/design/zsq2ahat30acTnumyy9aqC/00.Small-System?node-id=248-2680&m=dev
/*
* /
*/
import { html } from "lit";
describe("", () => {
it("should mount", () => {
cy.mount(html``);
cy.get("tems-breadcrumb-divider").should("exist");
});
it("should display a /", () => {
cy.mount(html``);
cy.get("tems-breadcrumb-divider")
.should("have.css", "height", "20px")
.and("have.css", "width", "20px")
.contains("/");
// Uh...
});
});