mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
|
|
import { render } from 'layout-test-utils';
|
||
|
|
import Login from '../Login';
|
||
|
|
|
||
|
|
test('renders login form', () => {
|
||
|
|
const { getByLabelText } = render(<Login />);
|
||
|
|
expect(getByLabelText(/email/i)).toBeInTheDocument();
|
||
|
|
expect(getByLabelText(/password/i)).toBeInTheDocument();
|
||
|
|
});
|