AccountButton done
This commit is contained in:
@@ -3,9 +3,9 @@ import { render, screen } from '@testing-library/react';
|
||||
import AccountButtons from '../src/components/account/AccountButtons.jsx';
|
||||
|
||||
describe('AccountButtons Component', () => {
|
||||
it('should render the AccountButtons component', () => {
|
||||
it('should render the Back link', () => {
|
||||
render(<AccountButtons registered={false} />);
|
||||
const accountButtonsElement = screen.getByRole('button', { name: /register/i });
|
||||
expect(accountButtonsElement).toBeInTheDocument();
|
||||
const backLinkElement = screen.getByRole('link', { name: /back/i });
|
||||
expect(backLinkElement).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
@@ -5,7 +5,7 @@ import Card from '../src/components/home/Card.jsx';
|
||||
describe('Card Component', () => {
|
||||
it('should render the Card component with the given ID', () => {
|
||||
const testId = '123';
|
||||
render(<Card id={testId} />);
|
||||
render(<Card id={testId} color={"FFA500FF"}/>);
|
||||
|
||||
const cardElement = screen.getByText(/123/i);
|
||||
expect(cardElement).toBeInTheDocument();
|
||||
@@ -13,7 +13,7 @@ describe('Card Component', () => {
|
||||
|
||||
it('should store the ID in local storage when clicked', () => {
|
||||
const testId = '456';
|
||||
render(<Card id={testId} />);
|
||||
render(<Card id={testId} color={"FFA500FF"}/>);
|
||||
|
||||
const cardElement = screen.getByText(/456/i);
|
||||
fireEvent.click(cardElement);
|
||||
|
||||
Reference in New Issue
Block a user