File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var should = require('should');
41
41
var dbConfig = require ( './dbconfig.js' ) ;
42
42
43
43
describe ( '76. fetchClobAsString.js' , function ( ) {
44
- this . timeout ( 10000 ) ;
44
+ this . timeout ( 100000 ) ;
45
45
46
46
var connection = null ;
47
47
var proc_create_table1 = "BEGIN \n" +
@@ -83,6 +83,7 @@ describe('76. fetchClobAsString.js', function() {
83
83
var drop_table2 = "DROP TABLE nodb_clob2 PURGE" ;
84
84
85
85
before ( 'get one connection' , function ( done ) {
86
+ oracledb . stmtCacheSize = 0 ;
86
87
oracledb . getConnection ( dbConfig , function ( err , conn ) {
87
88
should . not . exist ( err ) ;
88
89
connection = conn ;
@@ -400,7 +401,7 @@ describe('76. fetchClobAsString.js', function() {
400
401
] , done ) ;
401
402
} ) ; // 76.1.7
402
403
403
- it . skip ( '76.1.8 fetch clob using stream' , function ( done ) {
404
+ it ( '76.1.8 fetch clob using stream' , function ( done ) {
404
405
var id = 8 ;
405
406
var specialStr = '76.1.8' ;
406
407
var contentLength = 40 ;
You can’t perform that action at this time.
0 commit comments