Clean up testing code written for crash for children

This commit is contained in:
Ramya Achutha Rao 2017-01-17 17:01:56 -08:00 committed by Kevin Sawicki
parent d453dbdb40
commit 241773f2f0
3 changed files with 2 additions and 57 deletions

View file

@ -1,4 +1,4 @@
const {app, BrowserWindow, crashReporter} = require('electron')
const {app, BrowserWindow} = require('electron')
const path = require('path')
let mainWindow = null
@ -20,11 +20,6 @@ exports.load = (appUrl) => {
if (process.platform === 'linux') {
options.icon = path.join(__dirname, 'icon.png')
}
crashReporter.start({
submitURL: 'http://localhost:8080/uploadDump/mainDump',
companyName: 'Main Company',
productName: 'Main Product'
})
mainWindow = new BrowserWindow(options)
mainWindow.loadURL(appUrl)