Skip to content

Commit f1e4f86

Browse files
committed
test filter
1 parent c2ef0a6 commit f1e4f86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/node-specific/abort_signal.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)