mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
import renderer from "react-test-renderer"
|
|
|
|
import { TabBarIcon } from "@/presentation/react-native/ui/TabBarIcon"
|
|
|
|
describe("<TabBarIcon />", () => {
|
|
it("renders correctly", () => {
|
|
const tree = renderer
|
|
.create(<TabBarIcon name="info" color="black" />)
|
|
.toJSON()
|
|
expect(tree).toMatchSnapshot()
|
|
})
|
|
})
|