iosWebViewFix/scripts/test_and_log.sh

8 lines
227 B
Bash
Raw Permalink Normal View History

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