@@ -56,7 +56,7 @@ describe('Kuzzle constructor', function () {
5656      var  kuzzle  =  new  Kuzzle ( 'nowhere' ) ; 
5757
5858      should ( kuzzle ) . have . propertyWithDescriptor ( 'autoQueue' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
59-       should ( kuzzle ) . have . propertyWithDescriptor ( 'autoReconnect' ,  {  enumerable : true ,  writable : false ,  configurable : false  } ) ; 
59+       should ( kuzzle ) . have . propertyWithDescriptor ( 'autoReconnect' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
6060      should ( kuzzle ) . have . propertyWithDescriptor ( 'autoReplay' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
6161      should ( kuzzle ) . have . propertyWithDescriptor ( 'autoResubscribe' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
6262      should ( kuzzle ) . have . propertyWithDescriptor ( 'defaultIndex' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
@@ -67,11 +67,11 @@ describe('Kuzzle constructor', function () {
6767      should ( kuzzle ) . have . propertyWithDescriptor ( 'headers' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
6868      should ( kuzzle ) . have . propertyWithDescriptor ( 'metadata' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
6969      should ( kuzzle ) . have . propertyWithDescriptor ( 'replayInterval' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
70-       should ( kuzzle ) . have . propertyWithDescriptor ( 'reconnectionDelay' ,  {  enumerable : true ,  writable : false ,  configurable : false  } ) ; 
70+       should ( kuzzle ) . have . propertyWithDescriptor ( 'reconnectionDelay' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
7171      should ( kuzzle ) . have . propertyWithDescriptor ( 'jwtToken' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
7272      should ( kuzzle ) . have . propertyWithDescriptor ( 'offlineQueueLoader' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
7373      should ( kuzzle ) . have . propertyWithDescriptor ( 'port' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
74-       should ( kuzzle ) . have . propertyWithDescriptor ( 'sslConnection' ,  {  enumerable : true ,  writable : false ,  configurable : false  } ) ; 
74+       should ( kuzzle ) . have . propertyWithDescriptor ( 'sslConnection' ,  {  enumerable : true ,  writable : true ,  configurable : false  } ) ; 
7575    } ) ; 
7676
7777    it ( 'should have properties with the documented default values' ,  function  ( )  { 
0 commit comments