/** * External dependencies */ import { render } from '@testing-library/react'; /** * Internal dependencies */ import { ActivityCardPlaceholder } from '../'; describe( 'ActivityCardPlaceholder', () => { test( 'should render a default placeholder', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with subtitle placeholder', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with date placeholder', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with action placeholder', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with all optional placeholder', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with multiple lines of content', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); test( 'should render a card placeholder with no content', () => { const { container } = render( ); expect( container ).toMatchSnapshot(); } ); } );