Skip to content

Commit

Permalink
fix(test): [project-sequencer-statemachine] Linux の e2e テストで、electron…
Browse files Browse the repository at this point in the history
… を --no-sandbox で動くように (#2465)

Co-authored-by: raa0121 <[email protected]>
  • Loading branch information
Hiroshiba and raa0121 authored Jan 3, 2025
1 parent a4c4696 commit 51b39f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/electron/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});

Expand Down

0 comments on commit 51b39f2

Please sign in to comment.