import { describe, it, expect, afterEach } from 'vitest'; import { render, cleanup } from '@testing-library/preact' import { IconAccessible, IconAccessibleFilled } from "./src/tabler-icons-preact" describe("Preact Icon component", () => { afterEach(() => { cleanup(); }); it("should render icon component", () => { const { container } = render() expect(container.getElementsByTagName("svg").length).toBeGreaterThan(0) }) it("should update svg attributes when there are props passed to the component", () => { const { container } = render() const svg = container.getElementsByTagName("svg")[0] expect(svg.getAttribute("width")).toBe("48") expect(svg.getAttribute("fill")).toBe("none") expect(svg.getAttribute("stroke")).toBe("red") expect(svg.getAttribute("stroke-width")).toBe("4") }) it("should update svg attributes when there are props passed to the filled version of component", () => { const { container } = render() const svg = container.getElementsByTagName("svg")[0] expect(svg.getAttribute("width")).toBe("48") expect(svg.getAttribute("fill")).toBe("red") expect(svg.getAttribute("stroke")).toBe("none") expect(svg.getAttribute("stroke-width")).toBe(null) }) it('should apply all classNames to the element', () => { const testClass = 'test-class'; const { container } = render( , ); expect(container.firstChild).toHaveClass(testClass); expect(container.firstChild).toHaveClass('tabler-icon'); expect(container.firstChild).toHaveClass('tabler-icon-accessible'); }); it('should add a style attribute to the element', () => { const { container } = render() const svg = container.getElementsByTagName("svg")[0] expect(svg).toHaveStyle('color: rgb(255, 0, 0)') }) it("should match snapshot", () => { const { container } = render() expect(container.innerHTML).toMatchInlineSnapshot(` `) }) })