テストのためのセットアップLocalStorageは、Jestと反応するテストのためにJESTセットアップLocalStorageと反応します
1067 ワード
テストのためのセットアップLocalStorage
Sep 3 ' 20
コメント: 1
回答:0
2
Jestを使用して反応テストでLocalStorageに対処する方法.
私はsetuptestに追加されている.jsconst localStorageMock = {
getItem: jest.fn()
setItem: jest.fn(),
removeItem: jest.fn(),
clear: jest.fn(),
};
global.localStorage = localStorageMock;
キャッシュを取得する私のサービスの例です.export default class Cache {
getCache = () => {
...
Open Full Question
Reference
この問題について(テストのためのセットアップLocalStorageは、Jestと反応するテストのためにJESTセットアップLocalStorageと反応します), 我々は、より多くの情報をここで見つけました
https://dev.to/darmawan01/setup-localstorage-for-testing-react-with-jest-54
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
const localStorageMock = {
getItem: jest.fn()
setItem: jest.fn(),
removeItem: jest.fn(),
clear: jest.fn(),
};
global.localStorage = localStorageMock;
export default class Cache {
getCache = () => {
Reference
この問題について(テストのためのセットアップLocalStorageは、Jestと反応するテストのためにJESTセットアップLocalStorageと反応します), 我々は、より多くの情報をここで見つけました https://dev.to/darmawan01/setup-localstorage-for-testing-react-with-jest-54テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol