mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Add editing to call details pane
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user