import { Text } from 'react-native'; import React from 'react'; import { render } from '@testing-library/react-native'; import KeyboardAvoidingView from '../KeyboardAvoidingView'; describe('KeyboardAvoidingView', () => { it.each` withNavigation ${true} ${false} `('renders correctly with withNavigation is $withNavigation', ({ withNavigation }) => { const { toJSON } = render( Test KeyboardAvoidingView , ); expect(toJSON()).toMatchSnapshot(); }); });