79403421

Date: 2025-01-31 16:50:56
Score: 0.5
Natty:
Report link

Piggybacking off @Ian answer (which I upvoted); if you are using Jest you can add this to your Jest setupFiles file:

jest.mock("@react-native-cookies/cookies", () => ({
  set: jest.fn(),
  get: jest.fn(),
  clearAll: async () => {},
}));
Reasons:
  • Blacklisted phrase (0.5): upvote
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: stonedauwg