diff --git a/app/src/pages/onboarding/steps/__tests__/WelcomeStep.test.tsx b/app/src/pages/onboarding/steps/__tests__/WelcomeStep.test.tsx index 9e4759d7a..d4825b597 100644 --- a/app/src/pages/onboarding/steps/__tests__/WelcomeStep.test.tsx +++ b/app/src/pages/onboarding/steps/__tests__/WelcomeStep.test.tsx @@ -35,7 +35,7 @@ describe('WelcomeStep', () => { it('CTA has proper ARIA attributes for accessibility', () => { renderWithProviders( {}} />); 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');