-
Notifications
You must be signed in to change notification settings - Fork 1
Testing
Thomas Mahut edited this page Jan 19, 2025
·
1 revision
As recommended by the documentation, we'll place all our React Native (Expo) unit tests in the client/__tests__ directory. If we find that this approach doesn't scale well, we may switch to an alternative structure that makes use of multiple __tests__ directories.
Follow the steps below to run all unit tests.
- Navigate to the client directory with
cd client - Execute the tests with
npm run test- you will enter watch mode by default - Press
qto quit watch mode.