Files
openlayers/test
Tim Schaub bfc42ffa62 More realistic precision for cosine distance results
Chris Veness' discussion of using the spherical law of cosines (http://www.movable-type.co.uk/scripts/latlong.html) suggests it gives well-conditioned results "around 1 metre" in JavaScript (this assumes a sphere with 6,371km radius).

In Chrome 33, Math.pow(Math.cos(Math.PI / 4), 2) yields 0.4999999999999999.  When we take the arccosine of twice this, we get something significantly different than zero.  Multiplying by 6371 means we can't assert that this is within 1e-9 of zero.
2014-02-24 15:54:17 -07:00
..
2013-06-01 18:16:43 +02:00
2013-09-15 14:22:41 -06:00
2013-03-23 05:50:54 -06:00
2013-03-13 04:55:30 +01:00

Included in this directory

Run the test suite with PhantomJS

With PhantomJS installed, and assuming phantomjs is in the PATH:

$ phantomjs mocha-phantom.coffee ol.html

(Works with PhantomJS 1.6.1, untested with other versions.)

This command can also be run by doing ./build.py test at the root of ol3.

Make sure that the polvr web server is running (./build.py serve), otherwise you will most likely see something like 0 specs, 0 failures in 0.001s..

Tip for TDD'ers: to make PhantomJS run the test suite continuously each time a spec file is changed you can use nosier (http://pypi.python.org/pypi/nosier) and do nosier -p test -p src "./build.py test".