Add editing to call details pane

This commit is contained in:
Jamie Kyle
2024-07-30 11:39:24 -07:00
committed by GitHub
parent 95209689a8
commit cee2788654
22 changed files with 330 additions and 118 deletions
+2 -8
View File
@@ -1335,10 +1335,7 @@ describe('calling duck', () => {
beforeEach(function (this: Mocha.Context) {
this.callingServiceReadCallLink = this.sandbox
.stub(callingService, 'readCallLink')
.resolves({
callLinkState: getCallLinkState(FAKE_CALL_LINK),
errorStatusCode: undefined,
});
.resolves(getCallLinkState(FAKE_CALL_LINK));
});
const doAction = async (
@@ -1423,10 +1420,7 @@ describe('calling duck', () => {
beforeEach(function (this: Mocha.Context) {
this.callingServiceReadCallLink = this.sandbox
.stub(callingService, 'readCallLink')
.resolves({
callLinkState,
errorStatusCode: undefined,
});
.resolves(callLinkState);
this.callingServiceStartCallLinkLobby = this.sandbox
.stub(callingService, 'startCallLinkLobby')
.resolves(callLobbyData);