diff --git a/test/utils/subscription-registrySpec.js b/test/utils/subscription-registrySpec.js index 1f882b415..4fcc197c3 100644 --- a/test/utils/subscription-registrySpec.js +++ b/test/utils/subscription-registrySpec.js @@ -102,7 +102,7 @@ describe( 'subscription-registry manages subscriptions', function(){ expect( newSocketWrapper.socket.lastSendMessage ).toBe( _msg( 'E|E|NOT_SUBSCRIBED|someName+' ) ); }); - xit( 'routes the events', function(){ + it( 'routes the events', function(){ subscriptionRegistry.subscribe( 'someOtherName', socketWrapperA ); subscriptionRegistry.sendToSubscribers( 'someOtherName', _msg( 'msg6+' ) ); expect( socketWrapperA.socket.lastSendMessage ).toBe( _msg( 'msg6+' ) );