Update testing.md

This commit is contained in:
Ashita Prasad
2024-11-03 05:09:35 +05:30
committed by GitHub
parent 9fa02773a7
commit 25dadf3edb

View File

@ -12,10 +12,15 @@ Bootstrap to initialize the workspace, link local packages together and install
melos bootstrap melos bootstrap
``` ```
Get all dependencies Get all dependencies of packages
``` ```
melos pub-get melos pub-get
```
Get all dependencies of main app
```
flutter pub get flutter pub get
``` ```
@ -23,6 +28,11 @@ To run tests execute the following command:
``` ```
flutter test --coverage flutter test --coverage
```
followed by
```
melos test melos test
``` ```