File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ module.exports = class NetworkWrapper {
348348 let packet = data . data [ 1 ]
349349 Object . keys ( packet ) . forEach ( ( event ) => {
350350 if ( event === 'server_name' ) return
351- this . realtime . emit ( `${ bucket . public_id } :${ data . server_name || 'none' } :${ event } ` , packet [ event ] )
351+ this . realtime . emit ( `${ bucket . public_id } :${ packet . server_name || 'none' } :${ event } ` , packet [ event ] )
352352 } )
353353 }
354354
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ const Keymetrics = require('..')
66const assert = require ( 'assert' )
77const async = require ( 'async' )
88
9- describe ( 'Keymetrics Integration' , ( ) => {
9+ describe ( 'Keymetrics Integration' , function ( ) {
10+ this . timeout ( 5000 )
1011 let km = null
1112 it ( 'should instanciate keymetrics' , ( ) => {
1213 km = new Keymetrics ( ) . use ( 'standalone' , {
You can’t perform that action at this time.
0 commit comments