Fix some error log lines that lead to confusion.

In the past those log lines often were referenced for issues but they
are no real issues.
Either they are just deprecated code running or expected.
This commit is contained in:
Timo K
2026-01-19 12:10:18 +01:00
parent 27e351270c
commit a102b3f4aa
6 changed files with 62 additions and 29 deletions

View File

@@ -460,7 +460,9 @@ export class MockRTCSession extends TypedEventEmitter<
return this;
}
public updateCallIntent = vitest.fn();
public updateCallIntent = vitest
.fn()
.mockImplementation(async () => Promise.resolve());
private _membershipStatus = Status.Connected;
public get membershipStatus(): Status {