Added new test scripts (#122)

pull/120/head
Andrew Brogdon 5 years ago committed by GitHub
parent 9a536c9f08
commit 8e4d8c138b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,46 @@
#!/bin/bash
set -e
cd "animations"
flutter test
cd ..
cd "flutter_maps_firestore"
flutter test
cd ..
cd "isolate_example"
flutter test
cd ..
cd "jsonexample"
flutter test
cd ..
cd "place_tracker"
flutter test
cd ..
cd "platform_design"
flutter test
cd ..
cd "platform_view_swift"
flutter test
cd ..
cd "provider_counter"
flutter test
cd ..
cd "provider_shopper"
flutter test
cd ..
cd "shrine"
flutter test
cd ..
cd "veggieseasons"
flutter test
cd ..

@ -0,0 +1,43 @@
cd "animations"
flutter test || exit 1
cd ..
cd "flutter_maps_firestore"
flutter test || exit 1
cd ..
cd "isolate_example"
flutter test || exit 1
cd ..
cd "jsonexample"
flutter test || exit 1
cd ..
cd "place_tracker"
flutter test || exit 1
cd ..
cd "platform_design"
flutter test || exit 1
cd ..
cd "platform_view_swift"
flutter test || exit 1
cd ..
cd "provider_counter"
flutter test || exit 1
cd ..
cd "provider_shopper"
flutter test || exit 1
cd ..
cd "shrine"
flutter test || exit 1
cd ..
cd "veggieseasons"
flutter test || exit 1
cd ..
Loading…
Cancel
Save