테스트용 localStorage 설정 React with jest 테스트용 localStorage 설정 React with jest
테스트에 사용할 localStorage 설정
20년 9월 3일
참고: 1
답: 0
2
Jest를 사용하여 React 테스트에서 로컬 저장소를 처리하는 방법
setupTest에 추가되었습니다.회사 명const 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 설정 React with jest 테스트용 localStorage 설정 React with jest), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
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 설정 React with jest 테스트용 localStorage 설정 React with jest), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/darmawan01/setup-localstorage-for-testing-react-with-jest-54텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)