import React from 'react'; import renderer from 'react-test-renderer'; import { FeedPlaceholder } from './FeedPlaceholder'; describe('FeedPlaceholder', () => { it('renders with default props', () => { const tree = renderer.create().toJSON(); expect(tree).toMatchInlineSnapshot(`

No data to display...

`); }); it('renders with custom props', () => { const tree = renderer.create().toJSON(); expect(tree).toMatchInlineSnapshot(`

Random text

`); }); });