import React from 'react'
import { render } from '@testing-library/react-native'
import { SystemMessage } from '..'
import { DEFAULT_TEST_MESSAGE } from './data'
describe('SystemMessage', () => {
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()
})
})