Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* @jest-environment jsdom
*/
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { renderHook } from '@testing-library/react';
import nock from 'nock';
import { useSendEmailVerification } from '../use-send-email-verification';
describe( 'use-send-email-verification hook', () => {
test( 'returns success from the api', async () => {
const queryClient = new QueryClient();
const wrapper = ( { children } ) => (
<QueryClientProvider client={ queryClient }>{ children }</QueryClientProvider>
);
const expected = {
success: true,
};
nock( 'https://public-api.wordpress.com' )
.post( '/rest/v1.1/me/send-verification-email' )
.reply( 200, expected );
const { result } = renderHook( () => useSendEmailVerification(), {
wrapper,
} );
const sendEmailVerification = result.current;
const data = await sendEmailVerification();
expect( data ).toEqual( expected );
} );
} );