describe('when a matching file cannot be found', function () {
      it('forwards the request to the downstream app', function () {
        return callApp(app, '/does-not-exist').then(function (conn) {
          expect(conn.status).toEqual(404);
        });