@@ -41,13 +41,13 @@ if (config.transport === 'rest') {
4141 } ;
4242}
4343
44- describe ( 'iObj Functional Tests' , ( ) => {
45- before ( ( ) => {
44+ describe ( 'iObj Functional Tests' , function ( ) {
45+ before ( function ( ) {
4646 printConfig ( ) ;
4747 } ) ;
4848
49- describe ( 'constructor' , ( ) => {
50- it ( 'creates and returns an instance of iObj' , ( ) => {
49+ describe ( 'constructor' , function ( ) {
50+ it ( 'creates and returns an instance of iObj' , function ( ) {
5151 const connection = new iConn ( database , config . user , password ) ;
5252
5353 const obj = new iObj ( connection ) ;
@@ -56,8 +56,8 @@ describe('iObj Functional Tests', () => {
5656 } ) ;
5757 } ) ;
5858
59- describe ( 'retrUsrAuth' , ( ) => {
60- it ( `returns uses's authority for an object using ${ config . transport } tranport` , ( done ) => {
59+ describe ( 'retrUsrAuth' , function ( ) {
60+ it ( `returns uses's authority for an object using ${ config . transport } tranport` , function ( done ) {
6161 const connection = new iConn ( database , username , password , restOptions ) ;
6262
6363 const obj = new iObj ( connection ) ;
@@ -100,8 +100,8 @@ describe('iObj Functional Tests', () => {
100100 } ) ;
101101 } ) ;
102102
103- describe ( 'rtrCmdInfo' , ( ) => {
104- it ( 'returns command info' , ( done ) => {
103+ describe ( 'rtrCmdInfo' , function ( ) {
104+ it ( 'returns command info' , function ( done ) {
105105 const connection = new iConn ( database , username , password , restOptions ) ;
106106
107107 const obj = new iObj ( connection ) ;
@@ -152,8 +152,8 @@ describe('iObj Functional Tests', () => {
152152 } ) ;
153153 } ) ;
154154
155- describe ( 'retrPgmInfo' , ( ) => {
156- it ( 'returns program info' , ( done ) => {
155+ describe ( 'retrPgmInfo' , function ( ) {
156+ it ( 'returns program info' , function ( done ) {
157157 const connection = new iConn ( database , username , password , restOptions ) ;
158158
159159 const obj = new iObj ( connection ) ;
@@ -226,8 +226,8 @@ describe('iObj Functional Tests', () => {
226226 } ) ;
227227 } ) ;
228228
229- describe ( 'retrSrvPgmInfo' , ( ) => {
230- it ( 'returns service program info' , ( done ) => {
229+ describe ( 'retrSrvPgmInfo' , function ( ) {
230+ it ( 'returns service program info' , function ( done ) {
231231 const connection = new iConn ( database , username , password , restOptions ) ;
232232
233233 const obj = new iObj ( connection ) ;
@@ -281,8 +281,8 @@ describe('iObj Functional Tests', () => {
281281 } ) ;
282282 } ) ;
283283
284- describe ( 'retrUserInfo' , ( ) => {
285- it ( 'returns specified user profile info' , ( done ) => {
284+ describe ( 'retrUserInfo' , function ( ) {
285+ it ( 'returns specified user profile info' , function ( done ) {
286286 const connection = new iConn ( database , username , password , restOptions ) ;
287287
288288 const obj = new iObj ( connection ) ;
@@ -307,8 +307,8 @@ describe('iObj Functional Tests', () => {
307307 } ) ;
308308 } ) ;
309309
310- describe ( 'retrUsrAuthToObj' , ( ) => {
311- it ( `retrieves info for users who are authorized to an object using ${ config . transport } transpsort` , ( done ) => {
310+ describe ( 'retrUsrAuthToObj' , function ( ) {
311+ it ( `retrieves info for users who are authorized to an object using ${ config . transport } transpsort` , function ( done ) {
312312 const connection = new iConn ( database , username , password , restOptions ) ;
313313
314314 const obj = new iObj ( connection ) ;
@@ -334,8 +334,8 @@ describe('iObj Functional Tests', () => {
334334 } ) ;
335335 } ) ;
336336
337- describe ( 'addToLibraryList' , ( ) => {
338- it ( 'appends lib to user\'s lib list' , ( done ) => {
337+ describe ( 'addToLibraryList' , function ( ) {
338+ it ( 'appends lib to user\'s lib list' , function ( done ) {
339339 const connection = new iConn ( database , username , password , restOptions ) ;
340340
341341 const obj = new iObj ( connection ) ;
0 commit comments