react-code-dataset
/
wp-calypso
/client
/jetpack-cloud
/sections
/settings
/loading
/test
/index.jsx
| /** | |
| * @jest-environment jsdom | |
| */ | |
| import { renderWithProvider } from 'calypso/test-helpers/testing-library'; | |
| import AdvancedCredentialsLoadingPlaceholder from '../index'; | |
| describe( 'AdvancedCredentialsLoadingPlaceholder', () => { | |
| it( 'should render correctly', () => { | |
| const { container } = renderWithProvider( <AdvancedCredentialsLoadingPlaceholder /> ); | |
| expect( container ).toMatchSnapshot(); | |
| } ); | |
| } ); | |