()
| 31 | |
| 32 | if (responder.name && responder.interfaces.internal) { |
| 33 | var fn = function(){ |
| 34 | var args = Array.prototype.slice.call(arguments), |
| 35 | cb = args.pop(); |
| 36 | |
| 37 | return responder.interfaces.internal(args, {sessionId: sessionID, transport: 'test'}, function(err, params){ cb(params); }); |
| 38 | }; |
| 39 | ss.add(responder.name, fn); // interesting, potential or hack? |
| 40 | } |
| 41 | } |
no test coverage detected