File size: 1,196 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
/**
* @jest-environment jsdom
*/
import { render } from '@testing-library/react';
import { AuthFormHeader } from '../auth-form-header';
jest.mock( 'calypso/blocks/site', () => () => 'Site' );
const CLIENT_ID = 98765;
const SITE_SLUG = 'an.example.site';
const DEFAULT_PROPS = {
authQuery: {
authApproved: false,
blogname: 'Example Blog',
clientId: CLIENT_ID,
from: 'banner-44-slide-1-dashboard',
homeUrl: `http://${ SITE_SLUG }`,
jpVersion: '5.4',
nonce: 'fooBarNonce',
redirectAfterAuth: `http://${ SITE_SLUG }/wp-admin/admin.php?page=jetpack`,
redirectUri: `http://${ SITE_SLUG }/wp-admin/admin.php?page=jetpack&action=authorize&_wpnonce=fooBarNonce&redirect=http%3A%2F%2F${ SITE_SLUG }%2Fwp-admin%2Fadmin.php%3Fpage%3Djetpack`,
scope: 'administrator:fooBarBaz',
secret: 'fooBarSecret',
site: `http://${ SITE_SLUG }`,
siteIcon: '',
siteUrl: `http://${ SITE_SLUG }`,
state: '1',
userEmail: `email@${ SITE_SLUG }`,
},
translate: ( string ) => string,
};
describe( 'AuthFormHeader', () => {
test( 'renders as expected', () => {
const { container } = render( <AuthFormHeader { ...DEFAULT_PROPS } /> );
expect( container ).toMatchSnapshot();
} );
} );
|