Here is the UserContext.js mock data file
`import React, useState from ‘react’;
// Create a mock UserContext with default userId as null
const UserContext = React.createContext(
userId: null,
setUserId: () => , // Mock function for tests
);
// Mock UserProvider to be used in tests
const UserProvider = ( value, children ) =>
const [userId, setUserId] = useState(value?.userId ;
export UserContext, UserProvider ;`
So does the below go above or in the describes if above do I pass the renderComponentWithUserContext to the describe condition as a parameter and each test that uses it? Apologies for the troll, I’ve just been at this jest failure for days.
`const renderComponentWithUserContext = (userId = null) =>
console.log(‘Rendering JobDescriptionNavigationMenu with userId:’, userId); // Log userId
return render(
<UserProvider>
<JobDescriptionNavigationMenu />
</UserProvider>
);
;`