Log all crashes during specs
This commit is contained in:
parent
2e223288d2
commit
35a627fd60
1 changed files with 10 additions and 9 deletions
|
@ -2,20 +2,15 @@
|
|||
process.throwDeprecation = true
|
||||
|
||||
const electron = require('electron')
|
||||
const app = electron.app
|
||||
const crashReporter = electron.crashReporter
|
||||
const ipcMain = electron.ipcMain
|
||||
const dialog = electron.dialog
|
||||
const BrowserWindow = electron.BrowserWindow
|
||||
const protocol = electron.protocol
|
||||
const webContents = electron.webContents
|
||||
const v8 = require('v8')
|
||||
const {app, BrowserWindow, crashReporter, dialog, ipcMain, protocol, webContents} = electron
|
||||
|
||||
const {Coverage} = require('electabul')
|
||||
|
||||
const Coverage = require('electabul').Coverage
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
const url = require('url')
|
||||
const util = require('util')
|
||||
const v8 = require('v8')
|
||||
|
||||
var argv = require('yargs')
|
||||
.boolean('ci')
|
||||
|
@ -103,6 +98,12 @@ app.on('window-all-closed', function () {
|
|||
app.quit()
|
||||
})
|
||||
|
||||
app.on('web-contents-created', (event, contents) => {
|
||||
contents.on('crashed', (event, killed) => {
|
||||
console.log(`webContents ${contents.id} crashed: ${contents.getURL()} (killed=${killed})`)
|
||||
})
|
||||
})
|
||||
|
||||
app.on('ready', function () {
|
||||
// Test if using protocol module would crash.
|
||||
electron.protocol.registerStringProtocol('test-if-crashes', function () {})
|
||||
|
|
Loading…
Reference in a new issue