mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-03 21:40:28 -05:00
12 lines
229 B
CoffeeScript
12 lines
229 B
CoffeeScript
_ = require("lodash")
|
|
send = require("send")
|
|
reporter = require("@packages/reporter")
|
|
|
|
module.exports = {
|
|
handle: (req, res) ->
|
|
pathToFile = reporter.getPathToDist(req.params[0])
|
|
|
|
send(req, pathToFile)
|
|
.pipe(res)
|
|
}
|