Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
"stylelint-config-standard": "^36.0.0",
"stylelint-scss": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "5.5.4",
"typescript": "5.6.2",
"web-streams-polyfill": "^4.0.0"
},
"peerDependencies": {
Expand Down
7 changes: 6 additions & 1 deletion src/utils/location/parseGeoUri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const parseGeoUri = (uri: string): GeolocationCoordinates | undefined =>
return;
}

return {
const geoCoords = {
latitude: latitude!,
longitude: longitude!,
altitude: parse(coords[2]),
Expand All @@ -41,4 +41,9 @@ export const parseGeoUri = (uri: string): GeolocationCoordinates | undefined =>
heading: null,
speed: null,
};

return {
toJSON: () => geoCoords,
...geoCoords,
};
};
27 changes: 14 additions & 13 deletions test/test-utils/beacon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,20 @@ export const makeGeolocationPosition = ({
}: {
timestamp?: number;
coords?: Partial<GeolocationCoordinates>;
}): GeolocationPosition => ({
timestamp: timestamp ?? 1647256791840,
coords: {
accuracy: 1,
latitude: 54.001927,
longitude: -8.253491,
altitude: null,
altitudeAccuracy: null,
heading: null,
speed: null,
...coords,
},
});
}): GeolocationPosition =>
({
timestamp: timestamp ?? 1647256791840,
coords: {
accuracy: 1,
latitude: 54.001927,
longitude: -8.253491,
altitude: null,
altitudeAccuracy: null,
heading: null,
speed: null,
...coords,
},
}) as unknown as GeolocationPosition;

/**
* Creates a basic mock of Geolocation
Expand Down
9 changes: 9 additions & 0 deletions test/utils/location/parseGeoUri-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -50,6 +51,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -62,6 +64,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -74,6 +77,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -86,6 +90,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -98,6 +103,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -110,6 +116,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -122,6 +129,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});

Expand All @@ -134,6 +142,7 @@ describe("parseGeoUri", () => {
altitudeAccuracy: null,
heading: null,
speed: null,
toJSON: expect.any(Function),
});
});
});
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9246,10 +9246,10 @@ typed-array-length@^1.0.6:
is-typed-array "^1.1.13"
possible-typed-array-names "^1.0.0"

typescript@5.5.4:
version "5.5.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba"
integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==
typescript@5.6.2:
version "5.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==

ua-parser-js@^1.0.2:
version "1.0.38"
Expand Down
Loading