2019-01-09 14:16:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2019-03-13 23:42:05 +00:00
|
|
|
# script which is run by the CI build (after `yarn test`).
|
2019-01-09 14:16:20 +00:00
|
|
|
#
|
|
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
|
|
|
RIOT_WEB_DIR=riot-web
|
|
|
|
|
2019-03-13 23:42:05 +00:00
|
|
|
scripts/ci/build.sh
|
2019-01-09 14:16:20 +00:00
|
|
|
pushd "$RIOT_WEB_DIR"
|
2019-03-11 14:22:02 +00:00
|
|
|
yarn test
|
2019-01-09 14:16:20 +00:00
|
|
|
popd
|