Checked with third-party tool

This commit is contained in:
Tim Schaub
2013-01-23 22:12:17 -07:00
parent 0845dea366
commit afb9add911

View File

@@ -64,14 +64,12 @@ describe('ol.Extent', function() {
var destinationExtent = sourceExtent.transform(transformFn);
expect(destinationExtent).not.toBeUndefined();
expect(destinationExtent).not.toBeNull();
// FIXME check values with third-party tool
expect(destinationExtent.minX).toBe(-45);
expect(destinationExtent.minY).toBe(-60);
expect(destinationExtent.maxX).toBe(15);
expect(destinationExtent.maxY).toBe(30);
});
});
});