diff --git a/lib/test.js b/lib/test.js index f7ae26a..a414356 100644 --- a/lib/test.js +++ b/lib/test.js @@ -13,6 +13,14 @@ exports.getCount = function(mesh, callback, queryParams, req, res) { }); }; -exports.genHTML = function(mesh, callback, queryParams, req, res, next) { - res.ok('Some test html'); +exports.genHTML = function(req, res, callback ) { + var body = + ''+ + ''+ + '
process.pid: ' + process.pid + + '
counter: '+ (counter++) + + ''+ + ''; + res.write(body); + res.end(); }; \ No newline at end of file