2017-01-19 13:51:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2019-03-14 00:42:05 +01:00
|
|
|
# script which is run by the CI build (after `yarn test`).
|
2017-01-19 13:51:20 +01:00
|
|
|
#
|
2020-12-03 14:56:27 +01:00
|
|
|
# clones element-web develop and runs the tests against our version of react-sdk.
|
2017-01-19 13:51:20 +01:00
|
|
|
|
2019-04-09 16:20:33 +02:00
|
|
|
set -ev
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
2017-01-19 13:51:20 +01:00
|
|
|
|
2020-08-03 17:02:26 +02:00
|
|
|
echo "--- Building Element"
|
2020-12-03 14:56:27 +01:00
|
|
|
scripts/ci/layered.sh
|
2020-11-20 18:55:48 +01:00
|
|
|
cd element-web
|
2020-12-03 14:56:27 +01:00
|
|
|
element_web_dir=`pwd`
|
2020-04-17 00:26:29 +02:00
|
|
|
CI_PACKAGE=true yarn build
|
2020-11-20 18:55:48 +01:00
|
|
|
cd ..
|
2020-04-17 00:26:29 +02:00
|
|
|
# run end to end tests
|
|
|
|
pushd test/end-to-end-tests
|
2020-12-03 14:56:27 +01:00
|
|
|
ln -s $element_web_dir element/element-web
|
2020-04-17 00:26:29 +02:00
|
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
|
|
|
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
|
|
|
echo "--- Install synapse & other dependencies"
|
|
|
|
./install.sh
|
2020-12-03 14:56:27 +01:00
|
|
|
# install static webserver to server symlinked local copy of element
|
|
|
|
./element/install-webserver.sh
|
2020-04-17 00:26:29 +02:00
|
|
|
rm -r logs || true
|
|
|
|
mkdir logs
|
|
|
|
echo "+++ Running end-to-end tests"
|
|
|
|
TESTS_STARTED=1
|
|
|
|
./run.sh --no-sandbox --log-directory logs/
|
|
|
|
popd
|