koblog/bl-plugins/quill/quill-1.3.6/_develop/scripts/webdriver.sh
2018-10-18 19:21:57 +02:00

19 lines
286 B
Bash
Executable file

#!/bin/bash
npm start &
webdriver-manager start 2> /dev/null &
sleep 20s
wdio _develop/wdio.config.js
EXIT_CODE=$?
FOREMAN_PID=$(pgrep foreman)
SELENIUM_PID=$(pgrep -f selenium-server-standalone)
kill -s SIGINT $FOREMAN_PID
kill -s SIGINT $SELENIUM_PID
echo "\n"
exit $EXIT_CODE