Skip to content

Commit 59573b3

Browse files
authored
test(NODE-6751): skip flaky scram test (#4412)
1 parent b8bf5c8 commit 59573b3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/integration/auth/auth.prose.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,8 @@ describe('Authentication Spec Prose Tests', function () {
376376
expect(stats).to.exist;
377377
});
378378

379-
it(
379+
// TODO(NODE-6752): Fix flaky SCRAM-SHA-256 test
380+
it.skip(
380381
'logs in with non-normalized username and normalized password',
381382
metadata,
382383
async function () {
@@ -390,7 +391,7 @@ describe('Authentication Spec Prose Tests', function () {
390391
const stats = await client.db('admin').stats();
391392
expect(stats).to.exist;
392393
}
393-
);
394+
).skipReason = 'TODO(NODE-6752): Fix flaky SCRAM-SHA-256 test';
394395

395396
it(
396397
'logs in with normalized username and non-normalized password',

0 commit comments

Comments
 (0)