Skip to content

Commit 54e3ce3

Browse files
skip flaky auth test
1 parent 892c14d commit 54e3ce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/manual/x509_auth.test.ts

Lines changed: 2 additions & 2 deletions
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)