front/__tests__/AccountButtons.test.tsx.no
2024-10-19 08:16:51 +03:00

12 lines
465 B
Plaintext

import React from 'react';
import { render, screen } from '@testing-library/react';
import AccountButtons from '../src/components/account/AccountButtons.jsx';
describe('AccountButtons Component', () => {
it('should render the AccountButtons component', () => {
render(<AccountButtons registered={false} />);
const accountButtonsElement = screen.getByRole('button', { name: /register/i });
expect(accountButtonsElement).toBeInTheDocument();
});
});