Skip to content

Commit

Permalink
Fix failing marker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Mar 17, 2024
1 parent bc4d97d commit b7eaa44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/src/markers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ test("Create marker (using default values)", async () => {
symbol: "",
shape: "",
data: {},
ele: null
ele: expect.any(Number)
} satisfies Marker;

expect(marker).toEqual(expectedMarker);
Expand Down Expand Up @@ -251,7 +251,7 @@ test("Get marker", async () => {
symbol: "",
shape: "",
data: {},
ele: null
ele: expect.any(Number)
} satisfies Marker;

expect(await client2.getMarker({ id: marker.id })).toEqual(expectedMarker);
Expand Down Expand Up @@ -439,7 +439,7 @@ test("Socket v1 marker name", async () => {
symbol: "",
shape: "",
data: {},
ele: null
ele: expect.any(Number)
} satisfies Marker;

expect(marker).toEqual(expectedMarker);
Expand Down

0 comments on commit b7eaa44

Please sign in to comment.