test.spec.js 990 B

123456789101112131415161718192021222324252627282930
  1. // import { render } from "@solidjs/testing-library"
  2. // import { Icon2fa } from "./src/icons.js"
  3. // describe("Solidjs Icon component", () => {
  4. // test("should render icon component", () => {
  5. // const { container } = render(<Icon2fa />)
  6. // expect(container.getElementsByTagName("svg").length).toBeGreaterThan(0);
  7. // })
  8. // test("should update svg attributes when there are props passed to the component", () => {
  9. // const { container } = render(Icon2fa, {
  10. // props: {
  11. // size: 48,
  12. // color: "red",
  13. // "stroke-width": 4,
  14. // },
  15. // })
  16. // const svg = container.getElementsByTagName("svg")[0]
  17. // expect(svg.getAttribute("width")).toBe("48")
  18. // expect(svg.getAttribute("stroke")).toBe("red")
  19. // expect(svg.getAttribute("stroke-width")).toBe("4")
  20. // })
  21. // test("should match snapshot", () => {
  22. // const { container } = render(<Icon2fa />)
  23. // expect(container.innerHTML).toMatchInlineSnapshot()
  24. // })
  25. // })