// __mocks__/@redux/store.ts // Mock implementation of the store module const mockStore = { getState: jest.fn(), dispatch: jest.fn(), }; export default mockStore;