Skip to content
Denis Bardadym edited this page Mar 13, 2014 · 1 revision

IE9

  1. Some problems in boxing numeric integer values:
(100).should.obj === 100 // false 

see SO

As only possible workaround for this - use should as function, instead of object getter.

should(100).equal(100);
Clone this wiki locally