import { render } from '@testing-library/react-native' import * as React from 'react' import 'react-native' import { Provider } from 'react-redux' import AccountKeyEducation from 'src/account/AccountKeyEducation' import { Screens } from 'src/navigator/Screens' import { createMockStore, getMockStackScreenProps } from 'test/utils' const mockScreenProps = getMockStackScreenProps(Screens.AccountKeyEducation) describe('AccountKeyEducation', () => { it('renders correctly', () => { const tree = render( ) expect(tree).toMatchSnapshot() }) })