mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +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
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
'use strict'
|
|
|
|
const assert = require('assert')
|
|
const helper = require('../test-helper')
|
|
const suite = new helper.Suite()
|
|
|
|
suite.test('pool with copied settings includes password', () => {
|
|
const original = new helper.pg.Pool({
|
|
password: 'original',
|
|
})
|
|
|
|
const copy = new helper.pg.Pool(original.options)
|
|
|
|
assert.equal(copy.options.password, 'original')
|
|
})
|