diff --git a/ci/socket-io.js b/ci/socket-io.js index f1996cdb..37649712 100644 --- a/ci/socket-io.js +++ b/ci/socket-io.js @@ -43,6 +43,10 @@ var callback = client => { client.emit('This is the first argument', 'This is the second argument', { argCount: 3 }); + client.emit('on_abc_event', '', { + abc: 0, + some_other: 'value', + }); }; io.on('connection', callback); io.of('/admin').on('connection', callback);