Files
jitsi-meet/tests/helpers/types.ts
Дамян Минков 2dc135b80f feat(tests): Adds avatar test. (#15382)
* feat(tests): Adds join options.

* fix(tests): Fix opening tests by default with tenant.

* fix(tests): Renames a method.

* fix(tests): Moves a method from filmstrip to participants pane.

* fix(tests): Adds ok button to base dialog.

* fix(tests): Adds missing checks for using iframe API.

* feat(tests): Prettify the result html on error.

* fix(tests): Fixes checking when not in room.

* fix(tests): Adds profile button to toolbar.

* fix(tests): Adds avatar test.

* fix(tests): Fix all execute methods and await.

* fix(tests): Fix avatar checks.
2024-12-12 08:29:15 -06:00

29 lines
659 B
TypeScript

import type { Participant } from './Participant';
import WebhookProxy from './WebhookProxy';
export type IContext = {
conferenceJid: string;
iframeAPI: boolean;
jwtKid: string;
jwtPrivateKeyPath: string;
p1: Participant;
p2: Participant;
p3: Participant;
p4: Participant;
roomName: string;
webhooksProxy: WebhookProxy;
};
export type IJoinOptions = {
/**
* Whether to skip setting display name.
*/
skipDisplayName?: boolean;
/**
* Whether to skip in meeting checks like ice connected and send receive data. For single in meeting participant.
*/
skipInMeetingChecks?: boolean;
};