File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/integration/node-specific Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -653,7 +653,7 @@ describe('AbortSignal support', () => {
653653 } ) ;
654654 } ) ;
655655
656- describe ( 'when reauthenticating and the signal aborts' , ( ) => {
656+ describe ( 'when reauthenticating and the signal aborts' , { requires : { auth : 'enabled' } } , ( ) => {
657657 let client : MongoClient ;
658658 let collection : Collection ;
659659 let cursor ;
@@ -693,7 +693,7 @@ describe('AbortSignal support', () => {
693693 await client ?. close ( ) ;
694694 } ) ;
695695
696- it ( 'escapes reauth without interrupting it' , async ( ) => {
696+ it ( 'escapes reauth without interrupting it' , { requires : { auth : 'enabled' } } , async ( ) => {
697697 const checkIn = events . once ( client , 'connectionCheckedIn' ) ;
698698 const toArray = cursor . toArray ( ) . catch ( error => error ) ;
699699 expect ( await toArray ) . to . be . instanceOf ( DOMException ) ;
You can’t perform that action at this time.
0 commit comments