You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
exit on error
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# run with PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh install.sh if chrome is already installed
|
# run with PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true sh install.sh if chrome is already installed
|
||||||
|
set -e
|
||||||
./synapse/install.sh
|
./synapse/install.sh
|
||||||
./riot/install.sh
|
./riot/install.sh
|
||||||
npm install
|
npm install
|
||||||
|
1
run.sh
1
run.sh
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
./synapse/start.sh
|
./synapse/start.sh
|
||||||
./riot/start.sh
|
./riot/start.sh
|
||||||
node start.js
|
node start.js
|
||||||
|
1
start.js
1
start.js
@ -29,6 +29,7 @@ global.riotserver = 'http://localhost:8080';
|
|||||||
global.browser = null;
|
global.browser = null;
|
||||||
|
|
||||||
async function runTests() {
|
async function runTests() {
|
||||||
|
process.exit(-1);
|
||||||
console.log("running tests ...");
|
console.log("running tests ...");
|
||||||
const options = {};
|
const options = {};
|
||||||
if (process.env.CHROME_PATH) {
|
if (process.env.CHROME_PATH) {
|
||||||
|
Reference in New Issue
Block a user