Add failing spec for duplicate references over IPC
This commit is contained in:
parent
97a004a357
commit
10d39f673a
2 changed files with 18 additions and 2 deletions
|
@ -35,8 +35,8 @@ process.stdout
|
|||
// Access console to reproduce #3482.
|
||||
console
|
||||
|
||||
ipcMain.on('message', function (event, arg) {
|
||||
event.sender.send('message', arg)
|
||||
ipcMain.on('message', function (event, ...args) {
|
||||
event.sender.send('message', ...args)
|
||||
})
|
||||
|
||||
// Write output to file if OUTPUT_TO_FILE is defined.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue