Skip to content

Commit 715e4c5

Browse files
committed
fixup: skip tests on Node.js 16
1 parent 19066be commit 715e4c5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/e2e-tests/test/e2e-tls.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,11 @@ describe('e2e TLS', function () {
320320
context(
321321
'connecting without client cert to server with only partial trust chain',
322322
function () {
323+
before(function () {
324+
// TODO(MONGOSH-1898): Drop Node.js 16 entirely
325+
if (process.version.startsWith('v16.')) return this.skip();
326+
});
327+
323328
const server = startTestServer('e2e-tls-partial-trust-chain', {
324329
args: [
325330
'--tlsMode',

0 commit comments

Comments
 (0)