test: add unit tests for AspectRatio, Tag

This commit is contained in:
Eric Liu 2024-12-29 13:49:29 -08:00 committed by GitHub
commit f3a8d9972c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 158 additions and 13 deletions

View file

@ -0,0 +1,15 @@
import { render, screen } from "@testing-library/svelte";
import AspectRatio from "./AspectRatio.test.svelte";
describe("AspectRatio", () => {
it("renders correctly", () => {
render(AspectRatio);
["2x1", "2x3", "16x9", "4x3", "1x1", "3x4", "3x2", "9x16", "1x2"].forEach(
(ratio) => {
const boundingElement = screen.getByText(ratio).parentElement;
expect(boundingElement).toHaveClass(`bx--aspect-ratio--${ratio}`);
},
);
});
});