Brian C 50c06f9bc6
Remove test globals (#3264)
* 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
2024-06-19 13:46:16 -05:00

16 lines
448 B
JavaScript

const helper = require('../test-helper')
const assert = require('assert')
const suite = new helper.Suite()
suite.testAsync('it sets search_path on connection', async () => {
const client = new helper.pg.Client({
options: '--search_path=foo',
})
await client.connect()
const { rows } = await client.query('SHOW search_path')
assert.strictEqual(rows.length, 1)
assert.strictEqual(rows[0].search_path, 'foo')
await client.end()
})