/** * Copyright (c) 2019 Paul Armstrong */ import EmptyState from '../EmptyState'; import React from 'react'; import { render } from 'react-native-testing-library'; describe('EmptyState', () => { test('renders a message', () => { const { queryAllByText } = render(); expect(queryAllByText('tacos rule')).toHaveLength(1); }); });