Add failing spec for duplicate references over IPC

This commit is contained in:
Kevin Sawicki 2016-08-25 09:10:37 -07:00
parent 97a004a357
commit 10d39f673a
2 changed files with 18 additions and 2 deletions

View file

@ -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.