1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Added new test scripts (#122)

This commit is contained in:
Andrew Brogdon
2019-07-28 12:04:56 -07:00
committed by GitHub
parent 9a536c9f08
commit 8e4d8c138b
2 changed files with 89 additions and 0 deletions

46
customer_testing Executable file
View File

@@ -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 ..

43
customer_testing.bat Normal file
View File

@@ -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 ..