use xvfb-maybe in start-local-ci

This commit is contained in:
Ben Menesini
2024-05-08 02:31:07 +00:00
parent fd3654f006
commit f27e940c7b

View File

@@ -7,7 +7,7 @@
"build": "webpack",
"start": "npm run build -- --stats=errors-only && electron dist",
"start-local": "npm run build -- --stats=errors-only && electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"start-local-ci": "xvfb-maybe npm run build -- --stats=errors-only && electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"start-local-ci": "xvfb-maybe npm run build -- --stats=errors-only && xvfb-maybe electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"test": "jest",
"test-ci": "xvfb-maybe jest"
},