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 0a08eaa commit 7aaef26Copy full SHA for 7aaef26
tests/environment.js
@@ -12,7 +12,15 @@ class TestEnvironment extends NodeEnvironment {
12
await super.setup();
13
14
const appPath = path.resolve(__dirname, "..");
15
- this.global.__APP__ = await electron.launch({ args: [appPath] });
+ this.global.__APP__ = await electron.launch({
16
+ args: [
17
+ "--no-sandbox",
18
+ "--disable-gpu",
19
+ "--whitelisted-ips=",
20
+ "--disable-dev-shm-usage",
21
+ appPath,
22
+ ],
23
+ });
24
}
25
26
async teardown() {
0 commit comments