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 715e4c5 commit 716a251Copy full SHA for 716a251
packages/e2e-tests/test/e2e-tls.spec.ts
@@ -323,6 +323,10 @@ describe('e2e TLS', function () {
323
before(function () {
324
// TODO(MONGOSH-1898): Drop Node.js 16 entirely
325
if (process.version.startsWith('v16.')) return this.skip();
326
+ // The Windows crypto libraries don't accept the particular certificate setup here
327
+ // ('CertAddCertificateContextToStore Failed The object or property already exists'),
328
+ // so will not let us start a mongod server
329
+ if (process.platform === 'win32') return this.skip();
330
});
331
332
const server = startTestServer('e2e-tls-partial-trust-chain', {
0 commit comments