describe('when no authentication credentials are given', function () {
    it('returns 401 Unauthorized', function () {
      return callApp(app).then(function (conn) {
        expect(conn.status).toEqual(401);
      });