chore(ui,icons,ui-preset,toolbox): Move design system packages to monorepo (#5470)
This commit is contained in:
committed by
GitHub
parent
71853eafdd
commit
e4ce2f4e07
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import AcademicCapSolid from "../academic-cap-solid"
|
||||
|
||||
describe("AcademicCapSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<AcademicCapSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import AcademicCap from "../academic-cap"
|
||||
|
||||
describe("AcademicCap", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<AcademicCap data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Adjustments from "../adjustments"
|
||||
|
||||
describe("Adjustments", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Adjustments data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Apple from "../apple"
|
||||
|
||||
describe("Apple", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Apple data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArchiveBox from "../archive-box"
|
||||
|
||||
describe("ArchiveBox", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArchiveBox data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownCircle from "../arrow-down-circle"
|
||||
|
||||
describe("ArrowDownCircle", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownCircle data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownLeftMini from "../arrow-down-left-mini"
|
||||
|
||||
describe("ArrowDownLeftMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownLeftMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownLeft from "../arrow-down-left"
|
||||
|
||||
describe("ArrowDownLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownMini from "../arrow-down-mini"
|
||||
|
||||
describe("ArrowDownMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownRightMini from "../arrow-down-right-mini"
|
||||
|
||||
describe("ArrowDownRightMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownRightMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDownTray from "../arrow-down-tray"
|
||||
|
||||
describe("ArrowDownTray", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDownTray data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowDown from "../arrow-down"
|
||||
|
||||
describe("ArrowDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLeftMini from "../arrow-left-mini"
|
||||
|
||||
describe("ArrowLeftMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLeftMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLeft from "../arrow-left"
|
||||
|
||||
describe("ArrowLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLongDown from "../arrow-long-down"
|
||||
|
||||
describe("ArrowLongDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLongDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLongLeft from "../arrow-long-left"
|
||||
|
||||
describe("ArrowLongLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLongLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLongRight from "../arrow-long-right"
|
||||
|
||||
describe("ArrowLongRight", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLongRight data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowLongUp from "../arrow-long-up"
|
||||
|
||||
describe("ArrowLongUp", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowLongUp data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowPathMini from "../arrow-path-mini"
|
||||
|
||||
describe("ArrowPathMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowPathMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowPath from "../arrow-path"
|
||||
|
||||
describe("ArrowPath", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowPath data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowRightMini from "../arrow-right-mini"
|
||||
|
||||
describe("ArrowRightMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowRightMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowRightOnRectangle from "../arrow-right-on-rectangle"
|
||||
|
||||
describe("ArrowRightOnRectangle", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowRightOnRectangle data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpCircleSolid from "../arrow-up-circle-solid"
|
||||
|
||||
describe("ArrowUpCircleSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpCircleSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpDown from "../arrow-up-down"
|
||||
|
||||
describe("ArrowUpDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpMini from "../arrow-up-mini"
|
||||
|
||||
describe("ArrowUpMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpRightMini from "../arrow-up-right-mini"
|
||||
|
||||
describe("ArrowUpRightMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpRightMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpRightOnBox from "../arrow-up-right-on-box"
|
||||
|
||||
describe("ArrowUpRightOnBox", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpRightOnBox data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUpTray from "../arrow-up-tray"
|
||||
|
||||
describe("ArrowUpTray", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUpTray data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowUturnLeft from "../arrow-uturn-left"
|
||||
|
||||
describe("ArrowUturnLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowUturnLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowsPointingOutMini from "../arrows-pointing-out-mini"
|
||||
|
||||
describe("ArrowsPointingOutMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowsPointingOutMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrowsPointingOut from "../arrows-pointing-out"
|
||||
|
||||
describe("ArrowsPointingOut", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrowsPointingOut data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ArrrowRight from "../arrrow-right"
|
||||
|
||||
describe("ArrrowRight", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ArrrowRight data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import AtSymbol from "../at-symbol"
|
||||
|
||||
describe("AtSymbol", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<AtSymbol data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BackwardSolid from "../backward-solid"
|
||||
|
||||
describe("BackwardSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BackwardSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BarsThree from "../bars-three"
|
||||
|
||||
describe("BarsThree", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BarsThree data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BellAlertSolid from "../bell-alert-solid"
|
||||
|
||||
describe("BellAlertSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BellAlertSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BellAlert from "../bell-alert"
|
||||
|
||||
describe("BellAlert", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BellAlert data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BoltSolid from "../bolt-solid"
|
||||
|
||||
describe("BoltSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BoltSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Bolt from "../bolt"
|
||||
|
||||
describe("Bolt", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Bolt data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BookOpen from "../book-open"
|
||||
|
||||
describe("BookOpen", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BookOpen data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BugAntSolid from "../bug-ant-solid"
|
||||
|
||||
describe("BugAntSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BugAntSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Bug from "../bug"
|
||||
|
||||
describe("Bug", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Bug data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BuildingStorefront from "../building-storefront"
|
||||
|
||||
describe("BuildingStorefront", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BuildingStorefront data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BuildingTax from "../building-tax"
|
||||
|
||||
describe("BuildingTax", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BuildingTax data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BuildingsMini from "../buildings-mini"
|
||||
|
||||
describe("BuildingsMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BuildingsMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BuildingsSolid from "../buildings-solid"
|
||||
|
||||
describe("BuildingsSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<BuildingsSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Buildings from "../buildings"
|
||||
|
||||
describe("Buildings", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Buildings data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CalendarMini from "../calendar-mini"
|
||||
|
||||
describe("CalendarMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CalendarMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CalendarSolid from "../calendar-solid"
|
||||
|
||||
describe("CalendarSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CalendarSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Calendar from "../calendar"
|
||||
|
||||
describe("Calendar", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Calendar data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Camera from "../camera"
|
||||
|
||||
describe("Camera", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Camera data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CashSolid from "../cash-solid"
|
||||
|
||||
describe("CashSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CashSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Cash from "../cash"
|
||||
|
||||
describe("Cash", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Cash data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChannelsSolid from "../channels-solid"
|
||||
|
||||
describe("ChannelsSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChannelsSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Channels from "../channels"
|
||||
|
||||
describe("Channels", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Channels data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChartBar from "../chart-bar"
|
||||
|
||||
describe("ChartBar", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChartBar data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChatBubbleLeftRightSolid from "../chat-bubble-left-right-solid"
|
||||
|
||||
describe("ChatBubbleLeftRightSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChatBubbleLeftRightSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChatBubbleLeftRight from "../chat-bubble-left-right"
|
||||
|
||||
describe("ChatBubbleLeftRight", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChatBubbleLeftRight data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChatBubble from "../chat-bubble"
|
||||
|
||||
describe("ChatBubble", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChatBubble data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CheckCircleMiniSolid from "../check-circle-mini-solid"
|
||||
|
||||
describe("CheckCircleMiniSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CheckCircleMiniSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CheckCircleSolid from "../check-circle-solid"
|
||||
|
||||
describe("CheckCircleSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CheckCircleSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CheckMini from "../check-mini"
|
||||
|
||||
describe("CheckMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CheckMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Check from "../check"
|
||||
|
||||
describe("Check", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Check data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDoubleLeftMiniSolid from "../chevron-double-left-mini-solid"
|
||||
|
||||
describe("ChevronDoubleLeftMiniSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDoubleLeftMiniSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDoubleLeft from "../chevron-double-left"
|
||||
|
||||
describe("ChevronDoubleLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDoubleLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDoubleRightMiniSolid from "../chevron-double-right-mini-solid"
|
||||
|
||||
describe("ChevronDoubleRightMiniSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDoubleRightMiniSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDoubleRight from "../chevron-double-right"
|
||||
|
||||
describe("ChevronDoubleRight", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDoubleRight data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDownMini from "../chevron-down-mini"
|
||||
|
||||
describe("ChevronDownMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDownMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronDown from "../chevron-down"
|
||||
|
||||
describe("ChevronDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronLeftMini from "../chevron-left-mini"
|
||||
|
||||
describe("ChevronLeftMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronLeftMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronLeft from "../chevron-left"
|
||||
|
||||
describe("ChevronLeft", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronLeft data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronRightMini from "../chevron-right-mini"
|
||||
|
||||
describe("ChevronRightMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronRightMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronRight from "../chevron-right"
|
||||
|
||||
describe("ChevronRight", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronRight data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronUpDown from "../chevron-up-down"
|
||||
|
||||
describe("ChevronUpDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronUpDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChevronUpMini from "../chevron-up-mini"
|
||||
|
||||
describe("ChevronUpMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ChevronUpMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleDottedLine from "../circle-dotted-line"
|
||||
|
||||
describe("CircleDottedLine", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleDottedLine data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleFilledSolid from "../circle-filled-solid"
|
||||
|
||||
describe("CircleFilledSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleFilledSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleHalfSolid from "../circle-half-solid"
|
||||
|
||||
describe("CircleHalfSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleHalfSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleMiniFilledSolid from "../circle-mini-filled-solid"
|
||||
|
||||
describe("CircleMiniFilledSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleMiniFilledSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleMiniSolid from "../circle-mini-solid"
|
||||
|
||||
describe("CircleMiniSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleMiniSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleQuarterSolid from "../circle-quarter-solid"
|
||||
|
||||
describe("CircleQuarterSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleQuarterSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleSolid from "../circle-solid"
|
||||
|
||||
describe("CircleSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleStackSolid from "../circle-stack-solid"
|
||||
|
||||
describe("CircleStackSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleStackSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleStack from "../circle-stack"
|
||||
|
||||
describe("CircleStack", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleStack data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleThreeQuartersSolid from "../circle-three-quarters-solid"
|
||||
|
||||
describe("CircleThreeQuartersSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CircleThreeQuartersSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ClockChangedSolidMini from "../clock-changed-solid-mini"
|
||||
|
||||
describe("ClockChangedSolidMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ClockChangedSolidMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ClockSolidMini from "../clock-solid-mini"
|
||||
|
||||
describe("ClockSolidMini", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ClockSolidMini data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ClockSolid from "../clock-solid"
|
||||
|
||||
describe("ClockSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ClockSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Clock from "../clock"
|
||||
|
||||
describe("Clock", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Clock data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CloudArrowDown from "../cloud-arrow-down"
|
||||
|
||||
describe("CloudArrowDown", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CloudArrowDown data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CloudArrowUp from "../cloud-arrow-up"
|
||||
|
||||
describe("CloudArrowUp", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CloudArrowUp data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CogSixToothSolid from "../cog-six-tooth-solid"
|
||||
|
||||
describe("CogSixToothSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CogSixToothSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CogSixTooth from "../cog-six-tooth"
|
||||
|
||||
describe("CogSixTooth", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CogSixTooth data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CommandLineSolid from "../command-line-solid"
|
||||
|
||||
describe("CommandLineSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CommandLineSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CommandLine from "../command-line"
|
||||
|
||||
describe("CommandLine", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CommandLine data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ComponentSolid from "../component-solid"
|
||||
|
||||
describe("ComponentSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ComponentSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Component from "../component"
|
||||
|
||||
describe("Component", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<Component data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ComputerDesktopSolid from "../computer-desktop-solid"
|
||||
|
||||
describe("ComputerDesktopSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ComputerDesktopSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ComputerDesktop from "../computer-desktop"
|
||||
|
||||
describe("ComputerDesktop", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<ComputerDesktop data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CreditCardSolid from "../credit-card-solid"
|
||||
|
||||
describe("CreditCardSolid", () => {
|
||||
it("should render without crashing", async () => {
|
||||
render(<CreditCardSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user