Suppress the destroy() spec on all platforms
It is also crashing on mac, but just not as frequent as other platforms.
This commit is contained in:
parent
07840906dd
commit
af329a9429
1 changed files with 3 additions and 7 deletions
|
@ -589,13 +589,9 @@ describe('webContents module', function () {
|
|||
})
|
||||
})
|
||||
|
||||
describe('destroy()', () => {
|
||||
// Destroying webContents in its event listener is going to crash when
|
||||
// Electron is built in Debug mode.
|
||||
if (process.platform !== 'darwin') {
|
||||
return
|
||||
}
|
||||
|
||||
// Destroying webContents in its event listener is going to crash when
|
||||
// Electron is built in Debug mode.
|
||||
xdescribe('destroy()', () => {
|
||||
let server
|
||||
|
||||
before(function (done) {
|
||||
|
|
Loading…
Reference in a new issue