Skip to content

Commit

Permalink
test: skip failing cmap test
Browse files Browse the repository at this point in the history
  • Loading branch information
dariakp committed Jul 20, 2022
1 parent 138b841 commit 17764c1
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -48,7 +48,11 @@ const failpointTests = [
'Reset server and pool after network timeout error during authentication',
'Reset server and pool after shutdown error during authentication'
];
const skippedTests = isAuthEnabled ? failpointTests : [];

// TODO: NODE-3135 - make CMAP SDAM-aware and ensure PoolClearError is retryable
const cmapSkippedTests = ['PoolClearedError does not mark server unknown'];

const skippedTests = isAuthEnabled ? failpointTests.concat(cmapSkippedTests) : cmapSkippedTests;

function sdamDisabledTestFilter(test) {
const { description } = test;
Expand Down

0 comments on commit 17764c1

Please sign in to comment.