We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd1788 commit 1d4ec44Copy full SHA for 1d4ec44
test/smoke.spec.ts
@@ -4,7 +4,14 @@ import * as path from 'path';
4
async function launchApp() {
5
const app = await electron.launch({
6
cwd: path.join(import.meta.dirname, '..'),
7
- args: ['.'],
+ 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
+ ],
15
timeout: 10000,
16
env: {
17
...process.env,
0 commit comments