Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
myandrienko committed Oct 28, 2024
1 parent dee3931 commit d7699c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/devices/__tests__/CameraManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ describe('CameraManager', () => {
await manager.select(deviceId);

expect((getVideoStream as Mock).mock.lastCall[0]).toEqual({
deviceId,
deviceId: { exact: deviceId },
width: 1280,
height: 720,
});
Expand All @@ -182,7 +182,7 @@ describe('CameraManager', () => {
await manager.selectTargetResolution({ width: 640, height: 480 });

expect((getVideoStream as Mock).mock.lastCall[0]).toEqual({
deviceId: mockVideoDevices[0].deviceId,
deviceId: { exact: mockVideoDevices[0].deviceId },
width: 640,
height: 480,
});
Expand Down

0 comments on commit d7699c6

Please sign in to comment.