This is an Expo project created with create-expo-app.
-
Install dependencies
yarn
-
Start the app
yarn start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
You can start developing by editing the files inside the app directory. This project uses file-based routing.
To run the unit tests for this project, follow these steps:
-
Install Dependencies: Ensure all project dependencies are installed. You can do this by running:
yarn install
-
Run Tests: Execute the unit tests using the following command:
yarn test
- Test Framework: This project uses Jest as the testing framework. Ensure you are familiar with its syntax and features.
- Test Files: Test files are typically located in the
__tests__directory or have a.test.tsxsuffix. - Continuous Integration: If using a CI/CD pipeline, ensure the test command is included in your pipeline configuration to automatically run tests on each commit or pull request.