Nested Looping
array = [ [1], [1] ];
expect(array).to.all.all.equal(1);
but then, how would we handle 3+ levels deep?:
expect(array).to.all(3).equal(1);
...but something less mathematical.
Ranged Looping
expect(array).to.each(startIndex, endIndex).equal(1);
Synonyms
each could also be a nice general synonym for all.