()
| 7 | const test = suite.test.bind(suite) |
| 8 | |
| 9 | const setupClient = function () { |
| 10 | const client = new Client(helper.config) |
| 11 | client.connect() |
| 12 | client.query('CREATE TEMP TABLE boom(name varchar(10), age integer)') |
| 13 | client.query("INSERT INTO boom(name, age) VALUES('Aaron', 26)") |
| 14 | client.query("INSERT INTO boom(name, age) VALUES('Brian', 28)") |
| 15 | return client |
| 16 | } |
| 17 | |
| 18 | test('multiple results', function () { |
| 19 | test('queued queries', function () { |
no test coverage detected