diff --git a/src/features/ui/components/Layout/SocialMenu/SocialMenu.test.tsx b/src/features/ui/components/Layout/SocialMenu/SocialMenu.test.tsx index b6650a6..18ff55c 100644 --- a/src/features/ui/components/Layout/SocialMenu/SocialMenu.test.tsx +++ b/src/features/ui/components/Layout/SocialMenu/SocialMenu.test.tsx @@ -13,10 +13,8 @@ describe('Feature: UI', () => { render() ); // Assert - expect(getByRole('button', { name: 'Twitter' })).toBeInTheDocument(); - expect(getByRole('button', { name: 'Discord' })).toBeInTheDocument(); - expect(getByRole('button', { name: 'Instagram' })).toBeInTheDocument(); - //expect(getByRole('button', { name: 'Linkedin' })).toBeInTheDocument(); + expect(getByRole('button', { name: 'GitHub' })).toBeInTheDocument(); + expect(getByRole('button', { name: 'FaReadme' })).toBeInTheDocument(); expect(asFragment).toMatchSnapshot(); }); });