| # Script to execute smoke tests for the flutter/tests registry | |
| # https://github.com/flutter/tests | |
| # This is executed as a pre-submit check for every PR in flutter/flutter | |
| # At this point we can expect that mocks have already been generated | |
| # from the setup steps in | |
| # https://github.com/flutter/tests/blob/main/registry/flutter_devtools.test | |
| # Test all tests in devtools_app_shared | |
| cd packages/devtools_app_shared | |
| flutter pub get | |
| flutter test test/ | |
| cd ../devtools_app | |
| flutter pub get | |
| flutter test test/ |