node-postgres/packages/pg/test/unit/client/notification-tests.js
2020-04-10 11:31:03 -05:00

11 lines
280 B
JavaScript

'use strict'
var helper = require(__dirname + '/test-helper')
test('passes connection notification', function () {
var client = helper.client()
assert.emits(client, 'notice', function (msg) {
assert.equal(msg, 'HAY!!')
})
client.connection.emit('notice', 'HAY!!')
})