From 0f2916a8ce32fd25e0e915062523601403ced76d Mon Sep 17 00:00:00 2001 From: raa0121 Date: Fri, 20 Dec 2024 11:46:08 +0900 Subject: [PATCH] =?UTF-8?q?fix(test):=20Linux=20=E3=81=AE=20e2e=20?= =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E3=81=A7=E3=80=81electron=20?= =?UTF-8?q?=E3=82=92=20--no-sandbox=20=E3=81=A7=E5=8B=95=E3=81=8F=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB=20(#2421)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Hiroshiba --- tests/e2e/electron/example.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/electron/example.spec.ts b/tests/e2e/electron/example.spec.ts index 9829fc75c0..c2616c1f2c 100644 --- a/tests/e2e/electron/example.spec.ts +++ b/tests/e2e/electron/example.spec.ts @@ -42,7 +42,7 @@ test.beforeEach(async () => { test("起動したら「利用規約に関するお知らせ」が表示される", async () => { const app = await electron.launch({ - args: ["."], + args: ["--no-sandbox", "."], // NOTE: --no-sandbox はUbuntu 24.04で動かすのに必要 timeout: process.env.CI ? 0 : 60000, });