I have UserContext and a hook useUser exported from src/app/context/user-context.tsx.
Additionally I have an index.tsx file in src/app/context which exports all child modules.
If I spyOn src/app/context/user-context it works but changing the import to src/app/context I get:
TypeError: Cannot redefine property: useUser at Function.defineProperty (<anonymous>)
Why is that?
Source code:
// src/app/context/user-context.tsx
export const UserContext = React.createContext({});
export function useUser() {
return useContext(UserContext);;
}
// src/app/context/index.tsx
export * from "./user-context";
// *.spec.tsx
// This works:
import * as UserContext from "src/app/context/user-context";
// This does not work:
// import * as UserContext from "src/app/context";
it("should render complete navigation when user is logged in", () => {
jest.spyOn(UserContext, "useUser").mockReturnValue({
user: mockUser,
update: (user) => null,
initialized: true,
});
})

If you take a look at the js code produced for a re-export it looks like this
and the error you get is due to the compiler not adding
configurable: truein the options fordefineProperty, which would allow jest to redefine the export to mock it, from docsI think you could tweak your config somehow to make the compiler add that, but it all depends on the tooling you're using.
A more accessible approach would be using
jest.mockinstead ofjest.spyOnto mock the user-context file rather than trying to redefine an unconfigurable export