node-postgres/test/unit/client/notification-tests.js
2017-06-18 16:48:14 -05:00

12 lines
284 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!!");
})