mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
12 lines
284 B
JavaScript
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!!");
|
|
})
|
|
|