Skip to content

Commit b96803e

Browse files
committed
Disable crashReporter specs on Linux CI
1 parent c03cb11 commit b96803e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

spec/api-crash-reporter-spec.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,20 @@ const url = require('url')
99
const {closeWindow} = require('./window-helpers')
1010

1111
const {remote} = require('electron')
12+
const isCI = remote.getGlobal('isCi')
1213
const {app, BrowserWindow, crashReporter} = remote.require('electron')
1314

1415
describe('crashReporter module', function () {
1516
if (process.mas) {
1617
return
1718
}
1819

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+
1926
var originalTempDirectory = null
2027
var tempDirectory = null
2128

0 commit comments

Comments
 (0)