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 86e2659 commit 3fdac52Copy full SHA for 3fdac52
test/manual/tls_support.test.ts
@@ -1,3 +1,5 @@
1
+import * as process from 'node:process';
2
+
3
import { expect } from 'chai';
4
import { promises as fs } from 'fs';
5
@@ -32,6 +34,16 @@ describe('TLS Support', function () {
32
34
makeConnectionTest(CONNECTION_STRING, tlsSettings)
33
35
);
36
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
47
it(
48
'should connect with tls via url options',
49
makeConnectionTest(
0 commit comments