riot-web/scripts/travis/riot-unit-tests.sh

15 lines
252 B
Bash
Executable File

#!/bin/bash
#
# script which is run by the travis build (after `yarn test`).
#
# clones riot-web develop and runs the tests against our version of react-sdk.
set -ev
RIOT_WEB_DIR=riot-web
scripts/travis/build.sh
pushd "$RIOT_WEB_DIR"
yarn test
popd