@@ -48,6 +48,7 @@ describe('iSql Functional Tests', function () {
4848 } ) ;
4949
5050 describe ( 'prepare & execute' , function ( ) {
51+ this . timeout ( 1370 ) ;
5152 it ( 'prepares & executes stored procedure then fetch results' , function ( done ) {
5253 const connection = new iConn ( database , username , password , restOptions ) ;
5354
@@ -80,6 +81,7 @@ describe('iSql Functional Tests', function () {
8081 } ) ;
8182
8283 describe ( 'addQuery & fetch' , function ( ) {
84+ this . timeout ( 926 ) ;
8385 it ( 'runs a query and fetches results' , function ( done ) {
8486 const connection = new iConn ( database , username , password , restOptions ) ;
8587
@@ -105,6 +107,7 @@ describe('iSql Functional Tests', function () {
105107 } ) ;
106108
107109 describe ( 'added test to ensure issue #11 was resolved' , function ( ) {
110+ this . timeout ( 1152 ) ;
108111 it ( 'should parse SQL result set empty data tags correctly' , function ( done ) {
109112 const connection = new iConn ( database , username , password , restOptions ) ;
110113
@@ -131,6 +134,7 @@ describe('iSql Functional Tests', function () {
131134 } ) ;
132135
133136 describe ( 'tables' , function ( ) {
137+ this . timeout ( 954 ) ;
134138 it ( 'returns meta data for specified table' , function ( done ) {
135139 const connection = new iConn ( database , username , password , restOptions ) ;
136140
@@ -155,6 +159,7 @@ describe('iSql Functional Tests', function () {
155159 } ) ;
156160
157161 describe ( 'tablePriv' , function ( ) {
162+ this . timeout ( 978 ) ;
158163 it ( 'returns privilege data for a table' , function ( done ) {
159164 const connection = new iConn ( database , username , password , restOptions ) ;
160165
@@ -181,6 +186,7 @@ describe('iSql Functional Tests', function () {
181186 } ) ;
182187
183188 describe ( 'columns' , function ( ) {
189+ this . timeout ( 1038 ) ;
184190 it ( 'returns meta data for a column' , function ( done ) {
185191 const connection = new iConn ( database , username , password , restOptions ) ;
186192
@@ -218,6 +224,7 @@ describe('iSql Functional Tests', function () {
218224 } ) ;
219225
220226 describe ( 'columnPriv' , function ( ) {
227+ this . timeout ( 952 ) ;
221228 it ( 'returns privilege data for a column' , function ( done ) {
222229 const connection = new iConn ( database , username , password , restOptions ) ;
223230
@@ -246,6 +253,7 @@ describe('iSql Functional Tests', function () {
246253 } ) ;
247254
248255 describe ( 'procedures' , function ( ) {
256+ this . timeout ( 948 ) ;
249257 it ( 'returns meta data on for a procedure' , function ( done ) {
250258 const connection = new iConn ( database , username , password , restOptions ) ;
251259
@@ -273,6 +281,7 @@ describe('iSql Functional Tests', function () {
273281 } ) ;
274282
275283 describe ( 'pColumns' , function ( ) {
284+ this . timeout ( 970 ) ;
276285 it ( 'returns meta data for procedure column' , function ( done ) {
277286 const connection = new iConn ( database , username , password , restOptions ) ;
278287
@@ -311,6 +320,7 @@ describe('iSql Functional Tests', function () {
311320 } ) ;
312321
313322 describe ( 'primaryKeys' , function ( ) {
323+ this . timeout ( 936 ) ;
314324 it ( 'returns meta data for a primary key' , function ( done ) {
315325 const connection = new iConn ( database , username , password , restOptions ) ;
316326
@@ -336,6 +346,7 @@ describe('iSql Functional Tests', function () {
336346 } ) ;
337347
338348 describe ( 'foreignKeys' , function ( ) {
349+ this . timeout ( 934 ) ;
339350 it ( 'returns meta data for a foreign key' , function ( done ) {
340351 const connection = new iConn ( database , username , password , restOptions ) ;
341352
@@ -370,6 +381,7 @@ describe('iSql Functional Tests', function () {
370381 } ) ;
371382
372383 describe ( 'statistics' , function ( ) {
384+ this . timeout ( 1696 ) ;
373385 it ( 'returns stats info for table' , function ( done ) {
374386 const connection = new iConn ( database , username , password , restOptions ) ;
375387
0 commit comments