suman-server
Version:
Server/DB/watcher for Suman test runner
20 lines (13 loc) • 330 B
JavaScript
;
/**
* Created by denman on 12/14/2015.
*/
var url = require('url');
var fs = require('fs');
var path = require('path');
module.exports = function (req, res) {
var helpers = require('./index');
var fsPath = req.sumanData.fsPath;
console.log('fsPath:', fsPath);
helpers.serveFile(req, res);
};