본문 바로가기

jest5

[React Native] Jest 실행 시 [@RNC/AsyncStorage]: NativeModule: AsyncStorage is null. 에러 React Native에서 jest를 이용해 테스트를 실행하던 중 아래와 같은 에러를 발견하였습니다. 루트 폴더에 __mocks__/@react-native-async-storage/async-storage.js 폴더 및 파일을 생성하고 해당 파일 내에 아래 문장을 추가해주면 됩니다. export default from '@react-native-async-storage/async-storage/jest/async-storage-mock.js' 2021. 9. 22.
[React] Jest 캐시 지우는 명령어 react, react native에서 jest를 이용해 테스트를 할 때 캐쉬를 지우려면 test 명령어 뒤에 --clearCache를 붙여주면 됩니다. yarn test --clearCache 2021. 9. 22.
[React Native] Jest / SyntaxError: Cannot use import statement outside a module React Native에서 jest로 테스트 코드를 작성 중 다음과 같은 에러를 마주쳤습니다. react-native-vector-icons를 다운받고 import하고 사용할 때 발생한 버그인데요, package.json 파일에 아래 문장을 추가해주어 문제를 해결하였습니다. { "jest":{ ... "transformIgnorePatterns": [ "node_modules/(?!react-native|react-navigation)/" ] ... } } 2021. 9. 6.
[React Native] Jest / TypeError: Cannot read property 'SHORT' of undefined React Native에서 Jest를 이용한 테스트를 진행하던 중 아래와 같은 오류가 발생했습니다. 테스트 코드는 아래와 같은데요, 간단한 snapshot 테스트를 실행하는 코드입니다. import 'react-native'; import React from 'react'; import renderer from 'react-test-renderer'; import Quiz from '../src/components/screen/Quiz'; it('snapshot test', () => { const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); }); Quiz 컴포넌트에서 SimpleToast라는 모듈을 import하게 되면서 생긴.. 2021. 8. 20.