fix format (#2599)

This commit is contained in:
Steven Enamakel
2026-05-24 22:36:01 -07:00
committed by GitHub
parent 4a373ab735
commit 7939eb486c
@@ -35,7 +35,7 @@ describe('WelcomeStep', () => {
it('CTA has proper ARIA attributes for accessibility', () => {
renderWithProviders(<WelcomeStep onNext={() => {}} />);
const button = screen.getByRole('button', { name: 'Get Started' });
expect(button).toHaveAttribute('aria-label', 'Get Started');
expect(button).toHaveAttribute('aria-live', 'polite');
expect(button).toHaveAttribute('aria-busy', 'false');