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 bcab0f9 commit 0b68686Copy full SHA for 0b68686
test/manual/tls_support.test.js
@@ -20,13 +20,13 @@ describe('TLS Support', function() {
20
makeConnectionTest(connectionString, tlsSettings)
21
);
22
23
- const queryString = Object.keys(tlsSettings)
24
- .map(key => `${key}=${tlsSettings[key]}`)
25
- .join('&');
26
- console.log({ tlsSettings, url: `${connectionString}?${queryString}` });
27
it(
28
'should connect with tls via url options',
29
- makeConnectionTest(`${connectionString}?${queryString}`)
+ makeConnectionTest(
+ `${connectionString}?${Object.keys(tlsSettings)
+ .map(key => `${key}=${tlsSettings[key]}`)
+ .join('&')}`
+ )
30
31
});
32
0 commit comments