File size: 929 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 |
/**
* @jest-environment jsdom
*/
import { screen } from '@testing-library/react';
import LoginForm from 'calypso/blocks/login/login-form';
import loginReducer from 'calypso/state/login/reducer';
import routeReducer from 'calypso/state/route/reducer';
import { renderWithProvider } from 'calypso/test-helpers/testing-library';
const render = ( el, options ) =>
renderWithProvider( el, { ...options, reducers: { login: loginReducer, route: routeReducer } } );
describe( 'LoginForm', () => {
test( 'displays a login form', async () => {
render( <LoginForm socialAccountLink={ { isLinking: false } } /> );
const username = screen.getByLabelText( /username/i );
expect( username ).toBeInTheDocument();
const password = screen.getByLabelText( /^password$/i );
expect( password ).toBeInTheDocument();
const btn = screen.getByRole( 'button', { name: /continue$/i } );
expect( btn ).toBeInTheDocument();
} );
} );
|