File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 55 "main" : " lib/index.js" ,
66 "files" : [
77 " lib" ,
8+ " src" ,
89 " etc/prepare.js" ,
910 " mongodb.d.ts"
1011 ],
Original file line number Diff line number Diff line change @@ -1649,7 +1649,7 @@ describe('Bulk', function () {
16491649 } )
16501650 . then ( ( ) => {
16511651 const coll = db . collection ( 'doesnt_matter' ) ;
1652- coll . insertMany ( documents , { ordered : true } ) ;
1652+ return coll . insertMany ( documents , { ordered : true } ) ;
16531653 } )
16541654 . finally ( ( ) => client . close ( ) ) ;
16551655 } ) ;
@@ -1673,7 +1673,7 @@ describe('Bulk', function () {
16731673 } )
16741674 . then ( ( ) => {
16751675 const coll = db . collection ( 'doesnt_matter' ) ;
1676- coll . insertMany ( documents , { ordered : false } ) ;
1676+ return coll . insertMany ( documents , { ordered : false } ) ;
16771677 } )
16781678 . finally ( ( ) => client . close ( ) ) ;
16791679 } ) ;
You can’t perform that action at this time.
0 commit comments