@webex/plugin-meetings 3.0.0-next.27 → 3.0.0-next.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -776,11 +776,13 @@ describe('plugin-meetings', () => {
776
776
  await progressTime();
777
777
 
778
778
  assert.strictEqual(
779
- mqeData.intervalMetadata.microphoneInfo.deviceName,
779
+ mqeData.intervalMetadata.peripherals.find((val) => val.name === MEDIA_DEVICES.MICROPHONE)
780
+ .information,
780
781
  'fake-microphone'
781
782
  );
782
783
  assert.strictEqual(
783
- mqeData.intervalMetadata.cameraInfo.deviceName,
784
+ mqeData.intervalMetadata.peripherals.find((val) => val.name === MEDIA_DEVICES.CAMERA)
785
+ .information,
784
786
  'fake-camera'
785
787
  );
786
788
  });
@@ -794,11 +796,13 @@ describe('plugin-meetings', () => {
794
796
  await progressTime();
795
797
 
796
798
  assert.strictEqual(
797
- mqeData.intervalMetadata.microphoneInfo.deviceName,
799
+ mqeData.intervalMetadata.peripherals.find((val) => val.name === MEDIA_DEVICES.MICROPHONE)
800
+ .information,
798
801
  _UNKNOWN_
799
802
  );
800
803
  assert.strictEqual(
801
- mqeData.intervalMetadata.cameraInfo.deviceName,
804
+ mqeData.intervalMetadata.peripherals.find((val) => val.name === MEDIA_DEVICES.CAMERA)
805
+ .information,
802
806
  _UNKNOWN_
803
807
  );
804
808
  });