@applicaster/zapp-react-native-ui-components
Version:
Applicaster Zapp React Native ui components for the Quick Brick App
19 lines (14 loc) • 466 B
JavaScript
import React from "react";
import { render } from "@testing-library/react-native";
import { AudioPlayerMobileLayout } from "../Layout";
const audioPlayerLayoutProps = {
backgroundImageSource: { uri: "background_image_url" },
};
describe("<AudioPlayerMobileLayout />", () => {
it("renders correctly", () => {
const { toJSON } = render(
<AudioPlayerMobileLayout {...audioPlayerLayoutProps} />
);
expect(toJSON()).toMatchSnapshot();
});
});