UNPKG

@applicaster/zapp-react-native-ui-components

Version:

Applicaster Zapp React Native ui components for the Quick Brick App

23 lines (19 loc) 523 B
import React from "react"; import { render } from "@testing-library/react-native"; import { Artwork } from "../Artwork"; const artWorkProps = { srcImage: "https://example.com", config: { titleColor: "white", summaryColor: "white", backgroundColor: "black", backgroundImage: "https://example.com", isRTL: true, }, }; describe("<Artwork />", () => { it("renders correctly", () => { const { toJSON } = render(<Artwork {...artWorkProps} />); expect(toJSON()).toMatchSnapshot(); }); });