- Build your UI elements (Storybook) or adjustments based on any mocks in your card.
- Integrate elements into the application, making it a dynamic component.
- Create tests and run localized testing on all files you've touched yarn test:all
--watch ~/path/to/file --coverage
false - Turn coverage on and address missing lines in your tests
yarn test:all --watch ~/path/to/file --coverage
. You might need to add--updateSnapshot
to your local tests if you've modified the outputted component and receive snapshot errors.
Alternate back and forth between addressing coverage and fixing tests until all local tests pass.5. Once everything passes locally and coverage is high, run a unit test on the entire project