Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Known Bugs

Denis Bardadym edited this page May 29, 2014 · 2 revisions

IE9

Even if ie9 should support es5 it has some strange bug with 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