mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Add client connectionString tests (#1310) * Remove redundant tests * Add client connectionString test Add test to ensure { connectionString } is respected as an argument to the client constructor * Add test for connection string property Also fixed some legacy require statements. * Normalize native error properties Map native error properties to the same property names we use for errors from the JS driver. Fixes #972 Fixes #938
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
var helper = require('./test-helper')
|
|
|
|
var called = false;
|
|
test('disconnects', function() {
|
|
called = true;
|
|
var eventSink = new helper.Sink(1, function() {});
|
|
helper.pg.on('end', function() {
|
|
eventSink.add();
|
|
});
|
|
|
|
//this should exit the process
|
|
helper.pg.end();
|
|
})
|
|
|
|
|