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
|
|
|
|
|
2020-01-20 23:12:59 +00:00
|
|
|
scripts/ci/layered-riot-web.sh
|
|
|
|
cd ../riot-web
|
2020-01-21 17:53:17 +00:00
|
|
|
yarn build:genfiles # so the tests can run. Faster version of `build`
|
2019-03-11 14:22:02 +00:00
|
|
|
yarn test
|