79664604

Date: 2025-06-13 09:05:39
Score: 1
Natty:
Report link

You have to add the mocking like this

// imports...

jest.mock('next/headers', () => ({
  cookies: jest.fn(() => ({
    get: jest.fn(() => ({ value: 'mocked-theme' })),
    set: jest.fn(),
  })),
}));

describe('My component', () => {
    // your Unit tests...
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: José Rafael Moro Galindo