Merge pull request #6584 from electron/fix-ci

Do not throw exception when channel name is "error"
This commit is contained in:
Cheng Zhao 2016-07-24 21:55:11 +09:00 committed by GitHub
commit ed14f661dd

View file

@ -1,3 +1,6 @@
const EventEmitter = require('events').EventEmitter
module.exports = new EventEmitter()
// Do not throw exception when channel name is "error".
module.exports.on('error', () => {})