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 5
5
"main" : " lib/index.js" ,
6
6
"files" : [
7
7
" lib" ,
8
+ " src" ,
8
9
" etc/prepare.js" ,
9
10
" mongodb.d.ts"
10
11
],
Original file line number Diff line number Diff line change @@ -1649,7 +1649,7 @@ describe('Bulk', function () {
1649
1649
} )
1650
1650
. then ( ( ) => {
1651
1651
const coll = db . collection ( 'doesnt_matter' ) ;
1652
- coll . insertMany ( documents , { ordered : true } ) ;
1652
+ return coll . insertMany ( documents , { ordered : true } ) ;
1653
1653
} )
1654
1654
. finally ( ( ) => client . close ( ) ) ;
1655
1655
} ) ;
@@ -1673,7 +1673,7 @@ describe('Bulk', function () {
1673
1673
} )
1674
1674
. then ( ( ) => {
1675
1675
const coll = db . collection ( 'doesnt_matter' ) ;
1676
- coll . insertMany ( documents , { ordered : false } ) ;
1676
+ return coll . insertMany ( documents , { ordered : false } ) ;
1677
1677
} )
1678
1678
. finally ( ( ) => client . close ( ) ) ;
1679
1679
} ) ;
You can’t perform that action at this time.
0 commit comments