Skip to content

Commit 1d4ec44

Browse files
committed
WIP: Try some options to fix linux arm64
1 parent 1dd1788 commit 1d4ec44

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/smoke.spec.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ import * as path from 'path';
44
async function launchApp() {
55
const app = await electron.launch({
66
cwd: path.join(import.meta.dirname, '..'),
7-
args: ['.'],
7+
args: [
8+
'.',
9+
// Test lots of options to fix Arm64 build:
10+
'--no-sandbox',
11+
'--disable-setuid-sandbox',
12+
'--disable-gpu',
13+
'--disable-software-rasterizer'
14+
],
815
timeout: 10000,
916
env: {
1017
...process.env,

0 commit comments

Comments
 (0)