Created
January 14, 2021 21:26
-
-
Save md-weber/6b33641ae81696991a044e0041a0f28d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GREEN='\033[0;32m' | |
NC='\033[0m' | |
LINE_BREAK="${GREEN} --- ${NC}" | |
echo "$LINE_BREAK" | |
echo "${GREEN}Welcome Screen Tests begin ${NC}" | |
echo "$LINE_BREAK" | |
# Test the Welcome Screen | |
flutter drive \ | |
--driver=test_driver/integration_test_driver.dart \ | |
--target=integration_test/welcome_screen_test.dart | |
echo "$LINE_BREAK" | |
echo "${GREEN}Power Meter Test begins ${NC}" | |
echo "$LINE_BREAK" | |
# Test the add power meter entry | |
flutter drive \ | |
--driver=test_driver/integration_test_driver.dart \ | |
--target=integration_test/power_meter_test.dart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment