public Response get(Request req) {
StringBuffer html = new StringBuffer("<html><body><h1>Qunit Tests</h1>");
for(File path: paths){
for(QunitTestLocator.LocatedTest test: new QunitTestLocator().locateTests(path, basePath)){
html.append("<div><a href=\"" + test.relativePath + "\">" + test.name + "</a></div>");
}
}
html.append("</body></html");