mirror of https://github.com/vector-im/riot-web
Enable tests again to catch failures
parent
3d99125ced
commit
6d46ef548e
|
@ -51,8 +51,7 @@
|
|||
"lint:types": "tsc --noEmit --jsx react",
|
||||
"lint:style": "stylelint 'res/css/**/*.scss'",
|
||||
"test": "jest",
|
||||
"test:e2e": "echo 'The tests are broken with cross-signing. Fix them: https://github.com/vector-im/riot-web/issues/13226'",
|
||||
"test:e2e_real": "./test/end-to-end-tests/run.sh --riot-url http://localhost:8080"
|
||||
"test:e2e": "./test/end-to-end-tests/run.sh --riot-url http://localhost:8080"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.8.3",
|
||||
|
|
|
@ -13,29 +13,24 @@ handle_error() {
|
|||
|
||||
trap 'handle_error' ERR
|
||||
|
||||
echo "Tests are disabled, see https://github.com/vector-im/riot-web/issues/13226"
|
||||
exit 0
|
||||
|
||||
#TODO: Uncomment all of this in https://github.com/vector-im/riot-web/issues/13226
|
||||
|
||||
#echo "--- Building Riot"
|
||||
#scripts/ci/layered-riot-web.sh
|
||||
#cd ../riot-web
|
||||
#riot_web_dir=`pwd`
|
||||
#CI_PACKAGE=true yarn build
|
||||
#cd ../matrix-react-sdk
|
||||
## run end to end tests
|
||||
#pushd test/end-to-end-tests
|
||||
#ln -s $riot_web_dir riot/riot-web
|
||||
## PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
||||
## CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
||||
#echo "--- Install synapse & other dependencies"
|
||||
#./install.sh
|
||||
## install static webserver to server symlinked local copy of riot
|
||||
#./riot/install-webserver.sh
|
||||
#rm -r logs || true
|
||||
#mkdir logs
|
||||
#echo "+++ Running end-to-end tests"
|
||||
#TESTS_STARTED=1
|
||||
#./run.sh --no-sandbox --log-directory logs/
|
||||
#popd
|
||||
echo "--- Building Riot"
|
||||
scripts/ci/layered-riot-web.sh
|
||||
cd ../riot-web
|
||||
riot_web_dir=`pwd`
|
||||
CI_PACKAGE=true yarn build
|
||||
cd ../matrix-react-sdk
|
||||
# run end to end tests
|
||||
pushd test/end-to-end-tests
|
||||
ln -s $riot_web_dir riot/riot-web
|
||||
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
||||
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
||||
echo "--- Install synapse & other dependencies"
|
||||
./install.sh
|
||||
# install static webserver to server symlinked local copy of riot
|
||||
./riot/install-webserver.sh
|
||||
rm -r logs || true
|
||||
mkdir logs
|
||||
echo "+++ Running end-to-end tests"
|
||||
TESTS_STARTED=1
|
||||
./run.sh --no-sandbox --log-directory logs/
|
||||
popd
|
||||
|
|
Loading…
Reference in New Issue