We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19066be commit 715e4c5Copy full SHA for 715e4c5
packages/e2e-tests/test/e2e-tls.spec.ts
@@ -320,6 +320,11 @@ describe('e2e TLS', function () {
320
context(
321
'connecting without client cert to server with only partial trust chain',
322
function () {
323
+ before(function () {
324
+ // TODO(MONGOSH-1898): Drop Node.js 16 entirely
325
+ if (process.version.startsWith('v16.')) return this.skip();
326
+ });
327
+
328
const server = startTestServer('e2e-tls-partial-trust-chain', {
329
args: [
330
'--tlsMode',
0 commit comments