33 lines
707 B
Bash
Executable File
33 lines
707 B
Bash
Executable File
#!/bin/bash
|
|
|
|
readonly SCRIPT_PATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
readonly PROJECT_DIR="$(dirname $SCRIPT_PATH)"
|
|
|
|
function error() {
|
|
echo "$@" 1>&2
|
|
}
|
|
|
|
# on linux/macOS local IP can be found using $(ipconfig getifaddr en0)
|
|
export NODE_SERVER_IP=$1
|
|
FAILED=0
|
|
|
|
dart $PROJECT_DIR/tool/env.dart
|
|
|
|
cd $PROJECT_DIR/nodejs_server_test_auth_basic_and_ssl
|
|
node index.js &
|
|
|
|
flutter clean
|
|
cd $PROJECT_DIR/example
|
|
flutter clean
|
|
flutter driver --driver=test_driver/integration_test.dart --target=integration_test/webview_flutter_test.dart
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Integration tests passed successfully."
|
|
else
|
|
error "Some integration tests failed."
|
|
FAILED=1
|
|
fi
|
|
|
|
kill $(jobs -p)
|
|
|
|
exit $FAILED |