Skip to content

Commit d18a156

Browse files
committed
chore: ns not found :(
1 parent 9b76e10 commit d18a156

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,11 @@ describe('AbortSignal support', () => {
436436
let utilClient = this.configuration.newClient({}, {});
437437

438438
try {
439-
await utilClient.db('abortSignal').collection('support').drop({});
439+
await utilClient
440+
.db('abortSignal')
441+
.collection('support')
442+
.drop({})
443+
.catch(() => null);
440444

441445
const clientEncryption = new ClientEncryption(utilClient, {
442446
...autoEncryption,

0 commit comments

Comments
 (0)