Skip to content

Commit 1f8e01f

Browse files
ci: skip flaky x509 authentication test (#4486)
1 parent 05d54a3 commit 1f8e01f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/manual/x509_auth.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('x509 Authentication', function () {
5757
context(
5858
'when a valid cert is provided but the certificate does not correspond to a user',
5959
function () {
60-
it('fails to authenticate', async function () {
60+
it.skip('fails to authenticate', async function () {
6161
client = new MongoClient(connectionString.toString(), validOptions);
6262
const error = await client.connect().then(
6363
() => null,
@@ -66,7 +66,7 @@ describe('x509 Authentication', function () {
6666

6767
expect(error).to.be.instanceOf(MongoServerError);
6868
expect(error.codeName).to.match(/UserNotFound/i);
69-
});
69+
}).skipReason = 'TODO(NODE-6834): fix flaky test';
7070
}
7171
);
7272

0 commit comments

Comments
 (0)