Skip to content

Commit 3fdac52

Browse files
authored
chore(NODE-5842): skip windows tls url settings failure (#3969)
1 parent 86e2659 commit 3fdac52

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/manual/tls_support.test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import * as process from 'node:process';
2+
13
import { expect } from 'chai';
24
import { promises as fs } from 'fs';
35

@@ -32,6 +34,16 @@ describe('TLS Support', function () {
3234
makeConnectionTest(CONNECTION_STRING, tlsSettings)
3335
);
3436

37+
beforeEach(function () {
38+
if (
39+
this.currentTest?.title === 'should connect with tls via url options' &&
40+
process.platform === 'win32'
41+
) {
42+
this.currentTest.skipReason = 'TODO(NODE-5803): Un-skip Windows TLS tests via URL';
43+
return this.skip();
44+
}
45+
});
46+
3547
it(
3648
'should connect with tls via url options',
3749
makeConnectionTest(

0 commit comments

Comments
 (0)