iosWebViewFix/scripts/test_and_log.sh

8 lines
227 B
Bash
Raw Normal View History

2022-04-19 00:42:57 +02:00
#!/bin/bash
readonly SCRIPT_PATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
readonly PROJECT_DIR="$(dirname $SCRIPT_PATH)"
2022-04-27 16:59:49 +02:00
$SCRIPT_PATH/test.sh $1 $2 2>&1 | tee $PROJECT_DIR/flutter_driver_tests.log
2022-04-19 00:42:57 +02:00
kill $(jobs -p)