element-web/test/end-to-end-tests/run.sh

27 lines
374 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2018-07-27 18:44:01 +02:00
has_custom_riot=$(node has_custom_riot.js $@)
2018-07-27 18:44:01 +02:00
stop_servers() {
if [ $has_custom_riot -ne "1" ]; then
./riot/stop.sh
fi
./synapse/stop.sh
2018-07-27 18:44:01 +02:00
}
handle_error() {
EXIT_CODE=$?
stop_servers
exit $EXIT_CODE
}
trap 'handle_error' ERR
./synapse/start.sh
if [ $has_custom_riot -ne "1" ]; then
./riot/start.sh
fi
node start.js $@
2018-07-27 18:44:01 +02:00
stop_servers