import React from 'react';
import { render } from '@testing-library/react-native';
import { PezkuwiProvider } from '../../contexts/PezkuwiContext';
import BeCitizenScreen from '../BeCitizenScreen';
const BeCitizenScreenWrapper = () => (
);
describe('BeCitizenScreen', () => {
it('should render without crashing', () => {
const { toJSON } = render();
expect(toJSON()).toBeTruthy();
});
it('should match snapshot', () => {
const { toJSON } = render();
expect(toJSON()).toMatchSnapshot();
});
});