diff --git a/src/components/UserProfile/__tests__/UserProfileLayout.spec.ts b/src/components/UserProfile/__tests__/UserProfileLayout.spec.ts index e7d4f11a7149f66a87807a3850ba8cbb45cc35f1..ea5ed5fc8478886407332d09c04ffdba7ccb9156 100644 --- a/src/components/UserProfile/__tests__/UserProfileLayout.spec.ts +++ b/src/components/UserProfile/__tests__/UserProfileLayout.spec.ts @@ -29,19 +29,14 @@ describe('MyComponent and Router Tests', () => { }); describe('Component Rendering', () => { - it('renders MyComponent correctly with data from the store', () => { - // Mock user information - store.setUserInfo({ firstname: 'Jane', lastname: 'Doe', accessToken: 'thisIsATestToken' }); + it('renders MyComponent correctly', () => { const wrapper = mount(MyComponent, { global: { plugins: [mockRouter], }, }); - - // Check for text or elements that depend on user info - expect(wrapper.text()).toContain('Jane'); - expect(wrapper.text()).toContain('Doe'); + expect(wrapper.text()).toContain('Edit profile'); }); });