try to run e2e tests in travis
This commit is contained in:
parent
a00c2b753a
commit
fd5193b9f4
1 changed files with 10 additions and 1 deletions
|
@ -10,7 +10,7 @@ RIOT_WEB_DIR=riot-web
|
||||||
REACT_SDK_DIR=`pwd`
|
REACT_SDK_DIR=`pwd`
|
||||||
|
|
||||||
scripts/fetchdep.sh vector-im riot-web
|
scripts/fetchdep.sh vector-im riot-web
|
||||||
cd "$RIOT_WEB_DIR"
|
pushd "$RIOT_WEB_DIR"
|
||||||
|
|
||||||
mkdir node_modules
|
mkdir node_modules
|
||||||
npm install
|
npm install
|
||||||
|
@ -24,3 +24,12 @@ rm -r node_modules/matrix-react-sdk
|
||||||
ln -s "$REACT_SDK_DIR" node_modules/matrix-react-sdk
|
ln -s "$REACT_SDK_DIR" node_modules/matrix-react-sdk
|
||||||
|
|
||||||
npm run test
|
npm run test
|
||||||
|
popd
|
||||||
|
|
||||||
|
# run end to end tests
|
||||||
|
git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch bwindels/ci_script
|
||||||
|
pushd matrix-react-end-to-end-tests
|
||||||
|
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
|
||||||
|
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh ./install.sh
|
||||||
|
sh ./run.sh
|
||||||
|
popd
|
||||||
|
|
Loading…
Reference in a new issue