We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c03cb11 commit b96803eCopy full SHA for b96803e
spec/api-crash-reporter-spec.js
@@ -9,13 +9,20 @@ const url = require('url')
9
const {closeWindow} = require('./window-helpers')
10
11
const {remote} = require('electron')
12
+const isCI = remote.getGlobal('isCi')
13
const {app, BrowserWindow, crashReporter} = remote.require('electron')
14
15
describe('crashReporter module', function () {
16
if (process.mas) {
17
return
18
}
19
20
+ // FIXME internal Linux CI is failing when it detects a process crashes
21
+ // which is a false positive here since crashes are explicitly triggered
22
+ if (isCI && process.platform === 'linux') {
23
+ return
24
+ }
25
+
26
var originalTempDirectory = null
27
var tempDirectory = null
28
0 commit comments