We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d54a3 commit 1f8e01fCopy full SHA for 1f8e01f
test/manual/x509_auth.test.ts
@@ -57,7 +57,7 @@ describe('x509 Authentication', function () {
57
context(
58
'when a valid cert is provided but the certificate does not correspond to a user',
59
function () {
60
- it('fails to authenticate', async function () {
+ it.skip('fails to authenticate', async function () {
61
client = new MongoClient(connectionString.toString(), validOptions);
62
const error = await client.connect().then(
63
() => null,
@@ -66,7 +66,7 @@ describe('x509 Authentication', function () {
66
67
expect(error).to.be.instanceOf(MongoServerError);
68
expect(error.codeName).to.match(/UserNotFound/i);
69
- });
+ }).skipReason = 'TODO(NODE-6834): fix flaky test';
70
}
71
);
72
0 commit comments