Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FolderIllustration from "../folder-illustration"
import AiAssistentBadge from "../ai-assistent-badge"

describe("FolderIllustration", () => {
describe("AiAssistentBadge", () => {
it("should render the icon without errors", async () => {
render(<FolderIllustration data-testid="icon" />)
render(<AiAssistentBadge data-testid="icon" />)


const svgElement = screen.getByTestId("icon")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FolderOpenIllustration from "../folder-open-illustration"
import AiAssistentLuminosityBadge from "../ai-assistent-luminosity-badge"

describe("FolderOpenIllustration", () => {
describe("AiAssistentLuminosityBadge", () => {
it("should render the icon without errors", async () => {
render(<FolderOpenIllustration data-testid="icon" />)
render(<AiAssistentLuminosityBadge data-testid="icon" />)


const svgElement = screen.getByTestId("icon")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import AiAssistent from "../ai-assistent"
import BadgeCheck from "../badge-check"

describe("AiAssistent", () => {
describe("BadgeCheck", () => {
it("should render the icon without errors", async () => {
render(<AiAssistent data-testid="icon" />)
render(<BadgeCheck data-testid="icon" />)


const svgElement = screen.getByTestId("icon")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import AiAssistentLuminosity from "../ai-assistent-luminosity"
import BroomSparkleSolid from "../broom-sparkle-solid"

describe("AiAssistentLuminosity", () => {
describe("BroomSparkleSolid", () => {
it("should render the icon without errors", async () => {
render(<AiAssistentLuminosity data-testid="icon" />)
render(<BroomSparkleSolid data-testid="icon" />)


const svgElement = screen.getByTestId("icon")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import TagIllustration from "../tag-illustration"
import CardSparkle from "../card-sparkle"

describe("TagIllustration", () => {
describe("CardSparkle", () => {
it("should render the icon without errors", async () => {
render(<TagIllustration data-testid="icon" />)
render(<CardSparkle data-testid="icon" />)


const svgElement = screen.getByTestId("icon")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import ChefHat from "../chef-hat"

describe("ChefHat", () => {
it("should render the icon without errors", async () => {
render(<ChefHat data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import CircleHalfDottedClock from "../circle-half-dotted-clock"

describe("CircleHalfDottedClock", () => {
it("should render the icon without errors", async () => {
render(<CircleHalfDottedClock data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import CirclePlus from "../circle-plus"

describe("CirclePlus", () => {
it("should render the icon without errors", async () => {
render(<CirclePlus data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import CloudSolid from "../cloud-solid"

describe("CloudSolid", () => {
it("should render the icon without errors", async () => {
render(<CloudSolid data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import CodePullRequest from "../code-pull-request"

describe("CodePullRequest", () => {
it("should render the icon without errors", async () => {
render(<CodePullRequest data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import DraftOrders from "../draft orders"

describe("DraftOrders", () => {
it("should render the icon without errors", async () => {
render(<DraftOrders data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FaceCrossedOutEyes from "../face-crossed-out-eyes"

describe("FaceCrossedOutEyes", () => {
it("should render the icon without errors", async () => {
render(<FaceCrossedOutEyes data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FireSolid from "../fire-solid"

describe("FireSolid", () => {
it("should render the icon without errors", async () => {
render(<FireSolid data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import Fire from "../fire"

describe("Fire", () => {
it("should render the icon without errors", async () => {
render(<Fire data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FolderBadge from "../folder-badge"

describe("FolderBadge", () => {
it("should render the icon without errors", async () => {
render(<FolderBadge data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FolderOpenBadge from "../folder-open-badge"

describe("FolderOpenBadge", () => {
it("should render the icon without errors", async () => {
render(<FolderOpenBadge data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import FunnelPlus from "../funnel-plus"

describe("FunnelPlus", () => {
it("should render the icon without errors", async () => {
render(<FunnelPlus data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import GhostWorried from "../ghost-worried"

describe("GhostWorried", () => {
it("should render the icon without errors", async () => {
render(<GhostWorried data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import GiftCards from "../gift cards"

describe("GiftCards", () => {
it("should render the icon without errors", async () => {
render(<GiftCards data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import IdBadge from "../id-badge"

describe("IdBadge", () => {
it("should render the icon without errors", async () => {
render(<IdBadge data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import Linear from "../linear"

describe("Linear", () => {
it("should render the icon without errors", async () => {
render(<Linear data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"

import MarkdownSolid from "../markdown-solid"

describe("MarkdownSolid", () => {
it("should render the icon without errors", async () => {
render(<MarkdownSolid data-testid="icon" />)


const svgElement = screen.getByTestId("icon")

expect(svgElement).toBeInTheDocument()

cleanup()
})
})
Loading
Loading