Skip to content

Commit

Permalink
WIP - test unskips for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Sep 29, 2022
1 parent 1249ca6 commit e7d4e29
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -19,24 +19,24 @@ const filter: TestFilter = ({ description }) => {
return isAuthEnabled
? 'TODO(NODE-3135): handle auth errors, also see NODE-3891: fix tests broken when AUTH enabled'
: false;
case 'Network error on Monitor check':
case 'Network timeout on Monitor check':
return 'TODO(NODE-4608): Disallow parallel monitor checks';
// case 'Network error on Monitor check':
// case 'Network timeout on Monitor check':
// return 'TODO(NODE-4608): Disallow parallel monitor checks';
default:
return false;
}
};

describe('SDAM Unified Tests', function () {
describe.only('SDAM Unified Tests', function () {
afterEach(async function () {
if (this.currentTest!.pending) {
return;
}
// TODO(NODE-4573): fix socket leaks
const LEAKY_TESTS = [
'Command error on Monitor handshake',
'Network error on Monitor check',
'Network timeout on Monitor check',
// 'Network error on Monitor check',
// 'Network timeout on Monitor check',
'Network error on Monitor handshake',
'Network timeout on Monitor handshake'
];
Expand Down

0 comments on commit e7d4e29

Please sign in to comment.