mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
19 lines
286 B
Bash
Executable file
19 lines
286 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ev
|
|
|
|
handle_error() {
|
|
EXIT_CODE=$?
|
|
exit $EXIT_CODE
|
|
}
|
|
|
|
trap 'handle_error' ERR
|
|
|
|
# run end to end tests
|
|
pushd test/end-to-end-tests
|
|
rm -r logs || true
|
|
mkdir logs
|
|
echo "--- Running end-to-end tests"
|
|
TESTS_STARTED=1
|
|
./run.sh --no-sandbox --log-directory logs/
|
|
popd
|