Skip to content

Commit 8e87a0d

Browse files
committed
feat(meet): add ability to screenshare during a meeting
test(): test
1 parent 21b3bb0 commit 8e87a0d

File tree

6 files changed

+39
-28
lines changed

6 files changed

+39
-28
lines changed

packages/node_modules/@webex/redux-module-media/src/actions.js

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@webex/redux-module-media/src/actions.test.js

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@webex/widget-meet/src/components/call-active/index.js

Lines changed: 21 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/journeys/lib/test-helpers/space-widget/meet.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,12 @@ export function decline(aBrowser) {
6767
* @returns {void}
6868
*/
6969
export function hangup(aBrowser) {
70-
// Call controls currently has a hover state
71-
aBrowser.waitUntil(() =>
72-
aBrowser.isVisible(elements.callContainer),
73-
5000, 'call container is not visible when trying to hang up call');
7470
moveMouse(aBrowser, elements.callContainer);
75-
aBrowser.waitUntil(() =>
76-
aBrowser.isVisible(elements.callControls),
77-
5000, 'call controls is not visible when trying to hang up call');
71+
7872
aBrowser.waitUntil(() =>
7973
aBrowser.isVisible(elements.hangupButton),
8074
5000, 'hangup button is not visible when trying to hang up call');
75+
8176
aBrowser.click(elements.hangupButton);
8277
}
8378

test/journeys/specs/smoke/widget-recents/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,12 +374,14 @@ describe('Smoke Tests - Recents Widget', () => {
374374
window.openSpaceWidget(options);
375375
}, lorraine.token.access_token, marty.email);
376376
browserRemote.waitForVisible(meetElements.meetWidget);
377+
browserRemote.waitForVisible(meetElements.callButton);
377378
});
378379

379380
it('displays a call in progress button', () => {
380-
browserRemote.waitForVisible(meetElements.callButton);
381381
browserRemote.click(meetElements.callButton);
382382
browserLocal.waitUntil(() => browserLocal.isVisible(elements.joinCallButton), 10000, 'Join Call button was not displayed');
383+
384+
// Hangup
383385
hangup(browserRemote);
384386
browserLocal.waitUntil(() => !browserLocal.isVisible(elements.joinCallButton), 20000, 'Join Call button was not hidden after hanging up');
385387
});

wdio.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ exports.config = {
183183
sync: true,
184184
//
185185
// Level of logging verbosity: silent | verbose | command | data | result | error
186-
logLevel: 'silent',
186+
logLevel: 'error',
187187
//
188188
// Enables colors for log output.
189189
coloredLogs: true,

0 commit comments

Comments
 (0)