import React from 'react';
import { render } from '@testing-library/react-native';
import { Text } from 'react-native';
import MessageWrapper from '../MessageWrapper';
const Children = () => Children;
describe('MessageWrapper', () => {
it('renders as expected', () => {
const { toJSON } = render(
);
expect(toJSON()).toMatchSnapshot();
});
});