diff --git a/test/manual/tls_support.test.ts b/test/manual/tls_support.test.ts index 85b42468b7c..da89c71046b 100644 --- a/test/manual/tls_support.test.ts +++ b/test/manual/tls_support.test.ts @@ -1,3 +1,5 @@ +import * as process from 'node:process'; + import { expect } from 'chai'; import { promises as fs } from 'fs'; @@ -32,6 +34,16 @@ describe('TLS Support', function () { makeConnectionTest(CONNECTION_STRING, tlsSettings) ); + beforeEach(function () { + if ( + this.currentTest?.title === 'should connect with tls via url options' && + process.platform === 'win32' + ) { + this.currentTest.skipReason = 'TODO(NODE-5803): Un-skip Windows TLS tests via URL'; + return this.skip(); + } + }); + it( 'should connect with tls via url options', makeConnectionTest(