From 54e3ce3c3f70caae8c04b6c6530d853994bc769f Mon Sep 17 00:00:00 2001 From: bailey Date: Tue, 25 Mar 2025 15:36:09 -0600 Subject: [PATCH] skip flaky auth test --- test/manual/x509_auth.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/manual/x509_auth.test.ts b/test/manual/x509_auth.test.ts index 0a5143938dd..04fa5405ec7 100644 --- a/test/manual/x509_auth.test.ts +++ b/test/manual/x509_auth.test.ts @@ -57,7 +57,7 @@ describe('x509 Authentication', function () { context( 'when a valid cert is provided but the certificate does not correspond to a user', function () { - it('fails to authenticate', async function () { + it.skip('fails to authenticate', async function () { client = new MongoClient(connectionString.toString(), validOptions); const error = await client.connect().then( () => null, @@ -66,7 +66,7 @@ describe('x509 Authentication', function () { expect(error).to.be.instanceOf(MongoServerError); expect(error.codeName).to.match(/UserNotFound/i); - }); + }).skipReason = 'TODO(NODE-6834): fix flaky test'; } );