Add spec for updated extra parameters
This commit is contained in:
parent
a4bbad03c2
commit
b51adf8ae5
3 changed files with 69 additions and 1 deletions
46
spec/fixtures/api/crash-restart.html
vendored
Normal file
46
spec/fixtures/api/crash-restart.html
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
<html>
|
||||
<body>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
|
||||
const {port} = require('url').parse(window.location.href, true).query
|
||||
const {crashReporter} = require('electron')
|
||||
|
||||
crashReporter.start({
|
||||
productName: 'Zombies',
|
||||
companyName: 'Umbrella Corporation',
|
||||
submitURL: 'http://127.0.0.1:' + port,
|
||||
uploadToServer: true,
|
||||
ignoreSystemCrashHandler: true,
|
||||
extra: {
|
||||
'extra1': 'extra1',
|
||||
'extra2':'initial',
|
||||
'extra3': 'extra3'
|
||||
}
|
||||
})
|
||||
|
||||
setImmediate(() => {
|
||||
if (process.platform === 'darwin2') {
|
||||
crashReporter.setExtraParameter('extra2', 'extra2')
|
||||
crashReporter.setExtraParameter('extra3', null)
|
||||
} else {
|
||||
crashReporter.start({
|
||||
productName: 'Zombies',
|
||||
companyName: 'Umbrella Corporation',
|
||||
submitURL: 'http://127.0.0.1:' + port,
|
||||
uploadToServer: true,
|
||||
ignoreSystemCrashHandler: true,
|
||||
extra: {
|
||||
'extra1': 'extra1',
|
||||
'extra2': 'extra2'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
setImmediate(() => {
|
||||
process.crash()
|
||||
})
|
||||
})
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue