From 934d11049e80b95a9d461f1beeec0cc8231684b7 Mon Sep 17 00:00:00 2001 From: Neal Beeken Date: Thu, 18 Jan 2024 09:47:38 -0500 Subject: [PATCH] chore(NODE-5842): skip windows tls url settings failure --- test/manual/tls_support.test.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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(