describe('GET /abc', function () {
    it('rewrites the pathname properly', function () {
      return callApp(app, '/abc').then(function (conn) {
        expect(conn.responseText).toEqual('/xyz');
      });