@@ -48,6 +48,7 @@ describe('iSql Functional Tests', function () {
48
48
} ) ;
49
49
50
50
describe ( 'prepare & execute' , function ( ) {
51
+ this . slow ( 685 ) ;
51
52
it ( 'prepares & executes stored procedure then fetch results' , function ( done ) {
52
53
const connection = new iConn ( database , username , password , restOptions ) ;
53
54
@@ -80,6 +81,7 @@ describe('iSql Functional Tests', function () {
80
81
} ) ;
81
82
82
83
describe ( 'addQuery & fetch' , function ( ) {
84
+ this . slow ( 463 ) ;
83
85
it ( 'runs a query and fetches results' , function ( done ) {
84
86
const connection = new iConn ( database , username , password , restOptions ) ;
85
87
@@ -105,6 +107,7 @@ describe('iSql Functional Tests', function () {
105
107
} ) ;
106
108
107
109
describe ( 'added test to ensure issue #11 was resolved' , function ( ) {
110
+ this . slow ( 576 ) ;
108
111
it ( 'should parse SQL result set empty data tags correctly' , function ( done ) {
109
112
const connection = new iConn ( database , username , password , restOptions ) ;
110
113
@@ -131,6 +134,7 @@ describe('iSql Functional Tests', function () {
131
134
} ) ;
132
135
133
136
describe ( 'tables' , function ( ) {
137
+ this . slow ( 477 ) ;
134
138
it ( 'returns meta data for specified table' , function ( done ) {
135
139
const connection = new iConn ( database , username , password , restOptions ) ;
136
140
@@ -155,6 +159,7 @@ describe('iSql Functional Tests', function () {
155
159
} ) ;
156
160
157
161
describe ( 'tablePriv' , function ( ) {
162
+ this . slow ( 489 ) ;
158
163
it ( 'returns privilege data for a table' , function ( done ) {
159
164
const connection = new iConn ( database , username , password , restOptions ) ;
160
165
@@ -181,6 +186,7 @@ describe('iSql Functional Tests', function () {
181
186
} ) ;
182
187
183
188
describe ( 'columns' , function ( ) {
189
+ this . slow ( 519 ) ;
184
190
it ( 'returns meta data for a column' , function ( done ) {
185
191
const connection = new iConn ( database , username , password , restOptions ) ;
186
192
@@ -218,6 +224,7 @@ describe('iSql Functional Tests', function () {
218
224
} ) ;
219
225
220
226
describe ( 'columnPriv' , function ( ) {
227
+ this . slow ( 476 ) ;
221
228
it ( 'returns privilege data for a column' , function ( done ) {
222
229
const connection = new iConn ( database , username , password , restOptions ) ;
223
230
@@ -246,6 +253,7 @@ describe('iSql Functional Tests', function () {
246
253
} ) ;
247
254
248
255
describe ( 'procedures' , function ( ) {
256
+ this . slow ( 474 ) ;
249
257
it ( 'returns meta data on for a procedure' , function ( done ) {
250
258
const connection = new iConn ( database , username , password , restOptions ) ;
251
259
@@ -273,6 +281,7 @@ describe('iSql Functional Tests', function () {
273
281
} ) ;
274
282
275
283
describe ( 'pColumns' , function ( ) {
284
+ this . slow ( 485 ) ;
276
285
it ( 'returns meta data for procedure column' , function ( done ) {
277
286
const connection = new iConn ( database , username , password , restOptions ) ;
278
287
@@ -311,6 +320,7 @@ describe('iSql Functional Tests', function () {
311
320
} ) ;
312
321
313
322
describe ( 'primaryKeys' , function ( ) {
323
+ this . slow ( 468 ) ;
314
324
it ( 'returns meta data for a primary key' , function ( done ) {
315
325
const connection = new iConn ( database , username , password , restOptions ) ;
316
326
@@ -336,6 +346,7 @@ describe('iSql Functional Tests', function () {
336
346
} ) ;
337
347
338
348
describe ( 'foreignKeys' , function ( ) {
349
+ this . slow ( 467 ) ;
339
350
it ( 'returns meta data for a foreign key' , function ( done ) {
340
351
const connection = new iConn ( database , username , password , restOptions ) ;
341
352
@@ -370,6 +381,7 @@ describe('iSql Functional Tests', function () {
370
381
} ) ;
371
382
372
383
describe ( 'statistics' , function ( ) {
384
+ this . slow ( 848 ) ;
373
385
it ( 'returns stats info for table' , function ( done ) {
374
386
const connection = new iConn ( database , username , password , restOptions ) ;
375
387
0 commit comments