File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,10 @@ const OVERRIDDEN_CLASSES_GETTER = new Map([
29
29
[ 'GridFSBucketWriteStream' , ( ) => new mongodbLegacy . GridFSBucket ( db ) . openUploadStream ( 'file' ) ] ,
30
30
[ 'ListCollectionsCursor' , ( ) => new mongodbLegacy . ListCollectionsCursor ( db , { } ) ] ,
31
31
[ 'ListIndexesCursor' , ( ) => new mongodbLegacy . ListIndexesCursor ( collection ) ] ,
32
- [ 'MongoClient' , ( ) => new mongodbLegacy . MongoClient ( iLoveJs ) ] ,
33
- [ 'OrderedBulkOperation' , ( ) => collection . initializeOrderedBulkOp ( ) ] ,
34
- [ 'UnorderedBulkOperation' , ( ) => collection . initializeUnorderedBulkOp ( ) ]
32
+ [ 'MongoClient' , ( ) => new mongodbLegacy . MongoClient ( iLoveJs ) ]
33
+ // TODO(NODE-6528) - Fix the stubbing on tbese two tests.
34
+ // ['OrderedBulkOperation', () => collection.initializeOrderedBulkOp()],
35
+ //['UnorderedBulkOperation', () => collection.initializeUnorderedBulkOp()]
35
36
] ) ;
36
37
37
38
const classesWithGetters = sorted ( OVERRIDDEN_CLASSES_GETTER . keys ( ) , byStrings ) ;
You can’t perform that action at this time.
0 commit comments