element-web/scripts/travis/riot-unit-tests.sh
2019-01-09 15:20:55 +01:00

14 lines
258 B
Bash
Executable file

#!/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
RIOT_WEB_DIR=riot-web
scripts/travis/build.sh
pushd "$RIOT_WEB_DIR"
npm run test
popd