mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
test(grid): add unit tests
This commit is contained in:
parent
f7ac0e3f22
commit
d45409c7f3
5 changed files with 181 additions and 36 deletions
137
tests/Grid/Grid.test.ts
Normal file
137
tests/Grid/Grid.test.ts
Normal file
|
@ -0,0 +1,137 @@
|
|||
import { render } from "@testing-library/svelte";
|
||||
import Grid from "./Grid.test.svelte";
|
||||
|
||||
describe("Grid", () => {
|
||||
describe("Default", () => {
|
||||
it("should render as a div by default", () => {
|
||||
const { container } = render(Grid);
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--grid");
|
||||
});
|
||||
|
||||
it("should support rest props", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: {
|
||||
"data-testid": "custom-grid",
|
||||
"aria-label": "Grid layout",
|
||||
},
|
||||
});
|
||||
const grid = container.querySelector("[data-testid='custom-grid']");
|
||||
expect(grid).toHaveClass("bx--grid");
|
||||
expect(grid).toHaveAttribute("aria-label", "Grid layout");
|
||||
});
|
||||
});
|
||||
|
||||
it("should render condensed variant", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: { condensed: true },
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--grid--condensed");
|
||||
});
|
||||
|
||||
it("should render narrow variant", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: { narrow: true },
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--grid--narrow");
|
||||
});
|
||||
|
||||
it("should render full width variant", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: { fullWidth: true },
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--grid--full-width");
|
||||
});
|
||||
|
||||
it("should render with no gutter", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: { noGutter: true },
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--no-gutter");
|
||||
});
|
||||
|
||||
it("should render with no left gutter", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: { noGutterLeft: true },
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--no-gutter--left");
|
||||
});
|
||||
|
||||
it("should render with no right gutter", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: {
|
||||
noGutterRight: true,
|
||||
},
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--no-gutter--right");
|
||||
});
|
||||
|
||||
it("should render with row padding", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: {
|
||||
padding: true,
|
||||
},
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass("bx--row-padding");
|
||||
});
|
||||
|
||||
it("should render as a custom element using the as prop", () => {
|
||||
const { container } = render(Grid, { props: { as: true } });
|
||||
|
||||
const header = container.querySelector("header");
|
||||
expect(header).toHaveClass("bx--grid");
|
||||
});
|
||||
|
||||
it("should pass all variant classes and rest props to custom element", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: {
|
||||
as: true,
|
||||
condensed: true,
|
||||
narrow: true,
|
||||
fullWidth: true,
|
||||
noGutter: true,
|
||||
padding: true,
|
||||
"data-testid": "custom-header",
|
||||
"aria-label": "Custom header grid",
|
||||
},
|
||||
});
|
||||
const header = container.querySelector("[data-testid='custom-header']");
|
||||
expect(header).toHaveClass(
|
||||
"bx--grid",
|
||||
"bx--grid--condensed",
|
||||
"bx--grid--narrow",
|
||||
"bx--grid--full-width",
|
||||
"bx--no-gutter",
|
||||
"bx--row-padding",
|
||||
);
|
||||
expect(header).toHaveAttribute("aria-label", "Custom header grid");
|
||||
});
|
||||
|
||||
it("should combine multiple variant classes", () => {
|
||||
const { container } = render(Grid, {
|
||||
props: {
|
||||
condensed: true,
|
||||
narrow: true,
|
||||
noGutterLeft: true,
|
||||
noGutterRight: true,
|
||||
padding: true,
|
||||
},
|
||||
});
|
||||
const grid = container.querySelector("div.bx--grid");
|
||||
expect(grid).toHaveClass(
|
||||
"bx--grid",
|
||||
"bx--grid--condensed",
|
||||
"bx--grid--narrow",
|
||||
"bx--no-gutter--left",
|
||||
"bx--no-gutter--right",
|
||||
"bx--row-padding",
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue