2019-11-25 00:42:27 +00:00
|
|
|
#!/bin/bash
|
2021-01-28 16:10:15 +00:00
|
|
|
|
2019-12-14 15:08:15 +00:00
|
|
|
# on linux/macOS local IP can be found using $(ipconfig getifaddr en0)
|
2019-11-25 00:42:27 +00:00
|
|
|
export NODE_SERVER_IP=$1
|
|
|
|
dart tool/env.dart
|
|
|
|
cd nodejs_server_test_auth_basic_and_ssl
|
|
|
|
node index.js &
|
2020-05-11 00:48:41 +00:00
|
|
|
flutter clean
|
2019-11-25 00:42:27 +00:00
|
|
|
cd ../example
|
2020-05-09 02:36:07 +00:00
|
|
|
flutter clean
|
2021-01-28 16:10:15 +00:00
|
|
|
flutter driver --driver=test_driver/integration_test.dart --target=integration_test/webview_flutter_test.dart
|
2019-11-25 00:42:27 +00:00
|
|
|
kill $(jobs -p)
|