Skip to content

Commit fc6219a

Browse files
committed
Minor test changes
1 parent 906df53 commit fc6219a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/fetchClobAsString.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var should = require('should');
4141
var dbConfig = require('./dbconfig.js');
4242

4343
describe('76. fetchClobAsString.js', function() {
44-
this.timeout(10000);
44+
this.timeout(100000);
4545

4646
var connection = null;
4747
var proc_create_table1 = "BEGIN \n" +
@@ -83,6 +83,7 @@ describe('76. fetchClobAsString.js', function() {
8383
var drop_table2 = "DROP TABLE nodb_clob2 PURGE";
8484

8585
before('get one connection', function(done) {
86+
oracledb.stmtCacheSize = 0;
8687
oracledb.getConnection(dbConfig, function(err, conn) {
8788
should.not.exist(err);
8889
connection = conn;
@@ -400,7 +401,7 @@ describe('76. fetchClobAsString.js', function() {
400401
], done);
401402
}); // 76.1.7
402403

403-
it.skip('76.1.8 fetch clob using stream', function(done) {
404+
it('76.1.8 fetch clob using stream', function(done) {
404405
var id = 8;
405406
var specialStr = '76.1.8';
406407
var contentLength = 40;

0 commit comments

Comments
 (0)