@@ -57,7 +57,7 @@ describe('meta tests for BufferingStream', function () {
5757 } ) ;
5858} ) ;
5959
60- describe ( 'class MongoLogger' , async function ( ) {
60+ describe ( 'class MongoLogger' , function ( ) {
6161 describe ( '#constructor()' , function ( ) {
6262 it ( 'assigns each property from the options object onto the logging class' , function ( ) {
6363 const componentSeverities : MongoLoggerOptions [ 'componentSeverities' ] = {
@@ -1353,7 +1353,7 @@ describe('class MongoLogger', async function () {
13531353 } ) ;
13541354 } ) ;
13551355
1356- describe ( 'log' , async function ( ) {
1356+ describe ( 'log' , function ( ) {
13571357 let componentSeverities : MongoLoggerOptions [ 'componentSeverities' ] ;
13581358
13591359 beforeEach ( function ( ) {
@@ -1407,7 +1407,7 @@ describe('class MongoLogger', async function () {
14071407 } ) ;
14081408 } ) ;
14091409 } ) ;
1410- describe ( 'async stream failure handling' , async function ( ) {
1410+ describe ( 'async stream failure handling' , function ( ) {
14111411 context ( 'when stream is not stderr' , function ( ) {
14121412 let stderrStub ;
14131413
@@ -1419,7 +1419,7 @@ describe('class MongoLogger', async function () {
14191419 sinon . restore ( ) ;
14201420 } ) ;
14211421
1422- context ( 'when stream user defined stream and stream.write throws async' , async function ( ) {
1422+ context ( 'when stream user defined stream and stream.write throws async' , function ( ) {
14231423 it ( 'should catch error, not crash application, warn user, and start writing to stderr' , async function ( ) {
14241424 const stream = {
14251425 async write ( _log ) {
@@ -1456,7 +1456,7 @@ describe('class MongoLogger', async function () {
14561456 } ) ;
14571457 } ) ;
14581458
1459- context ( 'when stream is stdout and stdout.write throws' , async function ( ) {
1459+ context ( 'when stream is stdout and stdout.write throws' , function ( ) {
14601460 it ( 'should catch error, not crash application, warn user, and start writing to stderr' , async function ( ) {
14611461 sinon . stub ( process . stdout , 'write' ) . throws ( new Error ( 'I am stdout and do not work' ) ) ;
14621462 // print random message at the debug level
@@ -1509,7 +1509,7 @@ describe('class MongoLogger', async function () {
15091509 } ) ;
15101510 } ) ;
15111511 } ) ;
1512- context ( 'when async stream has multiple logs with different timeouts' , async function ( ) {
1512+ context ( 'when async stream has multiple logs with different timeouts' , function ( ) {
15131513 it ( 'should preserve their order' , async function ( ) {
15141514 const stream = {
15151515 buffer : [ ] ,
0 commit comments