mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* Remove assert from globals * Remove Client from globals * Remove global test function * Remove MemoryStream from globals * Require assert in SASL integration tests * Attempt to use a postgres with ssl? * Use latest image * Remove connection tests - they test internals that are better covered by testint the client
25 lines
499 B
JavaScript
25 lines
499 B
JavaScript
'use strict'
|
|
const helper = require('./test-helper')
|
|
const assert = require('assert')
|
|
const suite = new helper.Suite()
|
|
|
|
suite.test('can connect with ssl', function () {
|
|
const config = {
|
|
...helper.config,
|
|
ssl: {
|
|
rejectUnauthorized: false,
|
|
},
|
|
}
|
|
const client = new helper.pg.Client(config)
|
|
client.connect(
|
|
assert.success(function () {
|
|
client.query(
|
|
'SELECT NOW()',
|
|
assert.success(function () {
|
|
client.end()
|
|
})
|
|
)
|
|
})
|
|
)
|
|
})
|