it ("tests a positive zero", function() {
expect((Math.sin(-1*Math.PI)*300).toFixed(3)).toEqual("0.000");
});
But it fails, because it yields -0.000 (tested on chrome and safari). Removing the - with a regexp.replace is my last (and currently only solution) are there more?
Math.abs– bfavaretto Aug 22 '11 at 20:58expect(...).toEqual(...)? – Rocket Hazmat Aug 22 '11 at 20:59