Skip to content

Commit 101676a

Browse files
committedMar 8, 2025·
fix: try to solve launchind on linux
1 parent 64b6366 commit 101676a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
 

‎.github/workflows/compile-and-test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ jobs:
6767

6868
- run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test --if-present
6969
if: matrix.os == 'ubuntu-latest'
70-
env:
71-
NODE_ENV: 'development'
7270

7371
- uses: actions/attest-build-provenance@v2
7472
with:

‎tests/e2e.spec.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ const test = base.extend<TestFixtures>({
3232

3333
const electronApp = await electron.launch({
3434
executablePath: executablePath,
35-
env: {
36-
NODE_ENV: 'development'
37-
}
35+
args: ['--no-sandbox'],
3836
});
3937

4038
electronApp.on('console', (msg) => {

0 commit comments

Comments
 (0)
Please sign in to comment.