2017-01-19 13:51:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# script which is run by the travis build (after `npm run test`).
|
|
|
|
#
|
|
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
2017-01-19 19:23:34 +01:00
|
|
|
RIOT_WEB_DIR=riot-web
|
|
|
|
REACT_SDK_DIR=`pwd`
|
|
|
|
|
2019-01-09 14:36:32 +01:00
|
|
|
scripts/travis/build.sh
|
|
|
|
# run end to end tests
|
|
|
|
scripts/fetchdep.sh matrix-org matrix-react-end-to-end-tests master
|
|
|
|
pushd matrix-react-end-to-end-tests
|
|
|
|
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
|
|
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
|
|
|
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
|
|
|
./install.sh
|
|
|
|
./run.sh --travis
|
|
|
|
popd
|