describe('a request that matches a route in front of some middleware', function () {
    it('calls the correct app', function () {
      return callApp(app, '/home').then(function (conn) {
        expect(conn.responseText).toEqual('welcome home!');
      });