mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* First crack at monorepo * Update test command * Update path to script * Remove node 6 from CI
13 lines
354 B
JavaScript
13 lines
354 B
JavaScript
'use strict'
|
|
var helper = require('./test-helper')
|
|
|
|
new helper.Suite().test('idle timeout', function () {
|
|
const config = Object.assign({}, helper.config, { idleTimeoutMillis: 50 })
|
|
const pool = new helper.pg.Pool(config)
|
|
pool.connect(assert.calls(function (err, client, done) {
|
|
assert(!err)
|
|
client.query('SELECT NOW()')
|
|
done()
|
|
}))
|
|
})
|