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

15 lines
258 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
2019-01-09 15:02:20 +01:00
RIOT_WEB_DIR=riot-web
scripts/travis/build.sh
2019-01-09 15:02:20 +01:00
pushd "$RIOT_WEB_DIR"
npm run test
2019-01-09 15:02:20 +01:00
popd