From f27e940c7b57962f0256663131e2aac276f8bf69 Mon Sep 17 00:00:00 2001 From: Ben Menesini Date: Wed, 8 May 2024 02:31:07 +0000 Subject: [PATCH] use xvfb-maybe in start-local-ci --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e8ef0e6..f0c577d 100644 --- a/package.json +++ b/package.json @@ -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" },