Skip to content

Commit 6f4c1d2

Browse files
committed
Add test comments
1 parent 0506408 commit 6f4c1d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/dmlReturning.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ describe('6. dmlReturning.js', function(){
146146
);
147147
})
148148

149+
// it currently fails on OS X
149150
it.skip('6.1.3 INSERT statement with small maxSize restriction', function(done) {
150151
connection.should.be.ok;
151152
connection.execute(
@@ -290,6 +291,7 @@ describe('6. dmlReturning.js', function(){
290291
);
291292
})
292293

294+
// it currently fails with 11.2 database
293295
it('6.1.10 Stress test - support 4k varchars', function(done){
294296

295297
/*** Helper functions ***/
@@ -332,7 +334,7 @@ describe('6. dmlReturning.js', function(){
332334
{ autoCommit: true },
333335
function(err, result) {
334336
should.not.exist(err);
335-
// console.log(result);
337+
console.log(result);
336338
result.outBinds.rid.should.eql([size]);
337339
result.outBinds.rname[0].length.should.be.exactly(size);
338340
done();

0 commit comments

Comments
 (0)