mirror of https://github.com/vector-im/riot-web
exit on error
parent
c3b7e6c7cb
commit
e8f626ba18
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue