Palette: Enable accessibility attributes on Button component
Refactored the `Button` component to accept and spread standard HTML button attributes. This allows developers to add `aria-label`, `aria-expanded`, and other accessibility properties, which were previously ignored. Added unit tests to verify that attributes are correctly passed to the DOM element.
This commit is contained in:
23
src/components/ui/__tests__/Button.test.tsx
Normal file
23
src/components/ui/__tests__/Button.test.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
// @vitest-environment jsdom
|
||||
import { render, screen, cleanup } from '@testing-library/react';
|
||||
import { describe, it, expect, afterEach } from 'vitest';
|
||||
import { Button } from '../Button';
|
||||
import React from 'react';
|
||||
|
||||
describe('Button', () => {
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
});
|
||||
|
||||
it('passes aria-label to the button element', () => {
|
||||
render(<Button aria-label="Test Label">Click me</Button>);
|
||||
const button = screen.getByRole('button', { name: /test label/i });
|
||||
expect(button).toBeTruthy();
|
||||
});
|
||||
|
||||
it('passes other HTML attributes', () => {
|
||||
render(<Button data-testid="custom-button">Click me</Button>);
|
||||
const button = screen.getByTestId('custom-button');
|
||||
expect(button).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user