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 Mar 13, 2014 · 2 revisions

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