You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
511 B
20 lines
511 B
const expect = require('expect.js') |
|
|
|
const describe = require('mocha').describe |
|
const it = require('mocha').it |
|
|
|
const Pool = require('../') |
|
|
|
describe('logging', function () { |
|
it('logs to supplied log function if given', function () { |
|
const messages = [] |
|
const log = function (msg) { |
|
messages.push(msg) |
|
} |
|
const pool = new Pool({ log: log }) |
|
return pool.query('SELECT NOW()').then(function () { |
|
expect(messages.length).to.be.greaterThan(0) |
|
return pool.end() |
|
}) |
|
}) |
|
})
|
|
|