element-web/.travis-test-riot.sh

16 lines
404 B
Bash
Raw Normal View History

#!/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 20:21:03 +03:00
git clone --depth=1 --branch develop https://github.com/vector-im/riot-web.git riot-web
cd riot-web
mkdir node_modules
ln -s ../.. node_modules/matrix-react-sdk
npm install
(cd node_modules/matrix-js-sdk && npm install)
npm run test