We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8f7b8 commit 853f27eCopy full SHA for 853f27e
__tests__/sgp4.js
@@ -229,7 +229,7 @@ describe("getGroundTracks", () => {
229
const firstLng = coords[0][0][0];
230
const lastLng = coords[0][coords[0].length - 1][0];
231
232
- expect(firstLng).toBe(-179.9996305056871);
+ expect(firstLng).toBeCloseTo(-179.99963050);
233
expect(lastLng).toBe(179.9939688862288);
234
});
235
@@ -263,7 +263,7 @@ describe("getGroundTracksSync", () => {
263
264
265
266
+ expect(firstLng).toBeCloseTo(-179.9996305);
267
268
269
0 commit comments