describe('when the response has a Content-Type with a charset', function () {
    it('does not modify the existing charset', function () {
      return callApp(charset(jsonISO88591, 'utf-8')).then(function (conn) {
        expect(conn.response.charset).toBe('iso-8859-1');
      });