2019-01-09 15:16:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2019-03-14 00:42:05 +01:00
|
|
|
# script which is run by the CI build (after `yarn test`).
|
2019-01-09 15:16:20 +01:00
|
|
|
#
|
2020-12-03 14:56:27 +01:00
|
|
|
# clones element-web develop and runs the tests against our version of react-sdk.
|
2019-01-09 15:16:20 +01:00
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
2020-12-03 14:56:27 +01:00
|
|
|
scripts/ci/layered.sh
|
2020-11-20 18:55:48 +01:00
|
|
|
cd element-web
|
2020-01-21 18:53:17 +01:00
|
|
|
yarn build:genfiles # so the tests can run. Faster version of `build`
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn test
|