We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cbea21 commit e421167Copy full SHA for e421167
packages/pg-connection-string/test/parse.js
@@ -279,8 +279,8 @@ describe('parse', function () {
279
subject.ssl.should.eql({})
280
})
281
282
- it("configuration parameter sslmode=require doesn't overwrite sslrootcert=/path/to/ca", function () {
283
- var connectionString = 'pg:///?sslrootcert=' + __dirname + '/example.ca&sslmode=require'
+ it('configuration parameter ssl=true and sslmode=require still work with sslrootcert=/path/to/ca', function () {
+ var connectionString = 'pg:///?ssl=true&sslrootcert=' + __dirname + '/example.ca&sslmode=require'
284
var subject = parse(connectionString)
285
subject.ssl.should.eql({
286
ca: 'example ca\n',
0 commit comments