This commit is contained in:
2024-10-19 08:16:51 +03:00
parent 17697d7f77
commit 07728cbbb0
24 changed files with 1875 additions and 16 deletions
-11
View File
@@ -1,11 +0,0 @@
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();
});
});