mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
7c947d87ab
Most `npm` operations are replaced with `yarn`, which generally has better behavior. However, steps like publish that write to the NPM registry are left to `npm`, which currently handles these tasks best.
22 lines
553 B
Bash
Executable File
22 lines
553 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
|
|
REACT_SDK_DIR=`pwd`
|
|
|
|
scripts/travis/build.sh
|
|
# run end to end tests
|
|
scripts/fetchdep.sh matrix-org matrix-react-end-to-end-tests master
|
|
pushd matrix-react-end-to-end-tests
|
|
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
|
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
|
./install.sh
|
|
./run.sh --travis
|
|
popd
|