Skip to content

Instantly share code, notes, and snippets.

@singhAmandeep007
Created April 10, 2024 04:08
Show Gist options
  • Select an option

  • Save singhAmandeep007/15640f1346f2ae9218e202ad3173fa0b to your computer and use it in GitHub Desktop.

Select an option

Save singhAmandeep007/15640f1346f2ae9218e202ad3173fa0b to your computer and use it in GitHub Desktop.
Mocking localStorage jest
const localStorageMock: Storage = {
getItem: jest.fn(),
setItem: jest.fn(),
removeItem: jest.fn(),
clear: jest.fn(),
length: 0,
key: jest.fn()
};
global.localStorage = localStorageMock;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment