Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Together mode e2e testcases #5658

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ export class _MockCallAdapter implements CallAdapter {
throw Error('startTogetherMode not implemented');
}
/* @conditional-compile-remove(together-mode) */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
setTogetherModeSceneSize(width: number, height: number): void {
throw Error(`Setting Together Mode scene to width ${width} and height ${height} is not implemented`);
return;
}
disposeStreamView(): Promise<void> {
return Promise.resolve();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ export class MockCallAdapter implements CallAdapter {
throw Error('startTogetherMode not implemented');
}
/* @conditional-compile-remove(together-mode) */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
setTogetherModeSceneSize(width: number, height: number): void {
throw Error(`Setting Together Mode width ${width} and height: ${height} not implemented`);
return;
}
/* @conditional-compile-remove(together-mode) */
disposeTogetherModeStreamView(): Promise<void> {
Expand Down
Loading
Loading