a536afb1a8
A long standing bug was the pure JS client didn't accept or call a callback on `client.end`. This is inconsistent with both the documentation & general node patterns. This fixes the issue & adds a test. The issue did not exist in the native version of the client.
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
var helper = require('./test-helper')
|
|
|
|
var client = helper.client(assert.success(function() {
|
|
client.end(assert.success(function() {
|
|
}))
|
|
}))
|