@webex/plugin-meetings 1.156.4 → 1.158.0
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.
- package/README.md +3 -3
- package/browsers.js +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/meeting/index.js +12 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +12 -3
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meeting-info/utilv2.js +44 -0
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/index.js +2 -2
- package/dist/meetings/index.js.map +1 -1
- package/dist/metrics/index.js +8 -1
- package/dist/metrics/index.js.map +1 -1
- package/package.json +5 -5
- package/src/index.js +0 -1
- package/src/meeting/index.js +13 -0
- package/src/meeting-info/meeting-info-v2.js +8 -2
- package/src/meeting-info/utilv2.js +39 -0
- package/src/meetings/index.js +1 -2
- package/src/metrics/index.js +9 -1
- package/test/{unit/spec/transcription/index.js → integration/spec/transcription.js} +1 -1
- package/test/unit/spec/common/browser-detection.js +1 -0
- package/test/unit/spec/locus-info/index.js +1 -1
- package/test/unit/spec/meeting/index.js +49 -3
- package/test/unit/spec/meeting-info/utilv2.js +72 -0
- package/test/unit/spec/meetings/index.js +266 -74
- package/test/unit/spec/members/index.js +1 -0
- package/test/unit/spec/metrics/index.js +7 -26
- package/test/unit/spec/networkQualityMonitor/index.js +1 -0
- package/test/unit/spec/peerconnection-manager/index.js +11 -1
- package/test/unit/spec/personal-meeting-room/personal-meeting-room.js +1 -0
- package/test/unit/spec/reconnection-manager/index.js +1 -0
- package/test/unit/spec/roap/util.js +1 -0
- package/test/unit/spec/stats-analyzer/index.js +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import 'jsdom-global/register';
|
|
2
2
|
import {assert} from '@webex/test-helper-chai';
|
|
3
3
|
import sinon from 'sinon';
|
|
4
4
|
import PeerConnectionManager from '@webex/plugin-meetings/src/peer-connection-manager/index';
|
|
@@ -19,6 +19,16 @@ describe('Peerconnection Manager', () => {
|
|
|
19
19
|
onicecandidateerror: null,
|
|
20
20
|
localDescription: {sdp}
|
|
21
21
|
};
|
|
22
|
+
|
|
23
|
+
Object.defineProperty(global.window, 'RTCSessionDescription', {
|
|
24
|
+
writable: true,
|
|
25
|
+
value: class {
|
|
26
|
+
constructor(options) {
|
|
27
|
+
this.type = options.type;
|
|
28
|
+
this.sdp = options.sdp;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
});
|
|
22
32
|
});
|
|
23
33
|
describe('setRemoteSessionDetails', () => {
|
|
24
34
|
it('change the start bitrate on remoteSDP and remove extmap', async () => {
|