backup-site.js
927 Bytes
/**
* External dependencies
*/
import { render } from '@testing-library/react';
import user from '@testing-library/user-event';
/**
* Internal dependencies
*/
import { BackUpSite } from '../';
test( 'back up site migration step', async () => {
const props = {
goToNext: jest.fn(),
isStepActive: true,
isStepComplete: false,
stepIndex: 1,
};
const { getByLabelText, getByText } = render( <BackUpSite { ...props } /> );
getByText( /back up your site/ );
getByText( props.stepIndex.toString() );
// Because the 'confirm' checkbox isn't checked, the 'next' button should be disabled.
user.click( getByText( 'Next Step' ) );
expect( props.goToNext ).not.toHaveBeenCalled();
// Now that the 'confirm' checkbox is checked, the 'next' button should work.
user.click( getByLabelText( 'I have backed up my site.' ) );
user.click( getByText( 'Next Step' ) );
expect( props.goToNext ).toHaveBeenCalled();
} );