mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
* Add failing test for creating a `BoundPool` from another instance’s settings * Continue support for creating a pg.Pool from another instance’s options by dropping the requirement for the `password` property to be enumerable.
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
'use strict'
|
|
|
|
const assert = require('assert')
|
|
const helper = require('../test-helper')
|
|
|
|
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')
|
|
})
|