Unit Test: Setup React Native Apps for Testing
React Native 프로젝트 생성 후 Jest를 이용한 Unit Test Setup에 대하여 기록한다. Facebook에서도 React Native application을 테스트 할때 Jest를 사용하는 만큼 Jest의 역활이 크다고 생각된다. Setup { "scripts": { "test": "jest", "test:wa...
React Native 프로젝트 생성 후 Jest를 이용한 Unit Test Setup에 대하여 기록한다. Facebook에서도 React Native application을 테스트 할때 Jest를 사용하는 만큼 Jest의 역활이 크다고 생각된다. Setup { "scripts": { "test": "jest", "test:wa...
watchman에서 filesystem sync가 끊어진 것에 대한 경고로 오류 메세지의 안내에 따라 filesystem을 다시 연결한다 Error Message watchman warning: Recrawled this watch 1 times, most recently because: MustScanSubDirs UserDroppe...
Xcode에서 react-native-vector-icons을 등록하는 과정에서 다중의 Fonts path로 인한 오류로 짐작된다. pod install에서 등록되는 [CP] Copy Pods Resources와 Copy Bundle Resources에 충돌인데 Copy Bundle Resources 안의 Fonts를 지워주는 것으로 오류를 해결 ...
@react-navigation/drawer package의 dependency의 하나인 react-native-reanimated 설치과정에서 나타나는 오류로 React Navigation > Drawer Navigator Document 외에 별도의 설정이 필요하다. React Native Renanimated ERROR Er...
Minimal Mistake에서 Chirpy로 Migration 하면서 있었던 기록입니다. Problem Keywords fatal error: ‘ruby/config.h’ file not found Gem::Ext::BuildError: ERROR: Failed to build gem native extension. fatal e...
I love to working with mobile application. Now I start mobile development for my project, and I forgot many of React Native features as well as Expo. Many of them have been updated and deprecated. ...
I found one of my application failed to build on Netlify after I add new feature. And I found the problem caused by yhe conflicts in the dependencies of package in the package.json file. Solutio...
I found one of my application failed to build on Netlify after I add new feature. And I found the problem caused by yhe conflicts in the dependencies of package in the package.json file. Solution ...
오늘은 새로운 Frontend build tool, Vite를 사용한 프로젝트를 진행하려는데 NodeJS version이 낮아 지원하지 않아 NodeJS version을 바꾸는 법에 대해 알아보도록 하자. Prerequisites Homebrew must be installed on your system. Install Node Version M...
Given the `root` of a binary tree, return its maximum depth. A binary tree's maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node....