import React from 'react' import { render } from '@testing-library/react-native' import { Day } from '..' import { DEFAULT_TEST_MESSAGE } from './data' describe('Day', () => { it('should not render and compare with snapshot', () => { const { toJSON } = render() expect(toJSON()).toMatchSnapshot() }) it('should render and compare with snapshot', () => { const { toJSON } = render( ) expect(toJSON()).toMatchSnapshot() }) })