(req, res)
| 1421 | tests.forEach(({ title, api, mockApi }) => { |
| 1422 | describe(title, function () { |
| 1423 | const app = function(req, res) { |
| 1424 | res.end('hey'); |
| 1425 | }; |
| 1426 | |
| 1427 | it('should fire up the app on an ephemeral port', function (done) { |
| 1428 | api(app, { http2: true }) |