describe('when the response has a Content-Type with no charset', function () {
    it('adds the given charset', function () {
      return callApp(charset(json, 'utf-8')).then(function (conn) {
        expect(conn.response.charset).toEqual('utf-8');
      });