On send, pull data from target edit if sending edit
This commit is contained in:
parent
146b562c91
commit
48245eeea6
12 changed files with 529 additions and 135 deletions
|
@ -766,8 +766,8 @@ describe('editing', function (this: Mocha.Suite) {
|
|||
strictAssert(v2.sendStateByConversationId, 'v2 has send state');
|
||||
assert.strictEqual(
|
||||
v2.sendStateByConversationId[conversationId].status,
|
||||
SendStatus.Pending, // TODO (DESKTOP-6176) - this should be Sent!
|
||||
'send state for v2 message is pending'
|
||||
SendStatus.Sent,
|
||||
'send state for v2 message is sent'
|
||||
);
|
||||
|
||||
strictAssert(v3.sendStateByConversationId, 'v3 has send state');
|
||||
|
@ -780,8 +780,8 @@ describe('editing', function (this: Mocha.Suite) {
|
|||
strictAssert(v4.sendStateByConversationId, 'v4 has send state');
|
||||
assert.strictEqual(
|
||||
v4.sendStateByConversationId[conversationId].status,
|
||||
SendStatus.Pending, // TODO (DESKTOP-6176) - this should be Sent!
|
||||
'send state for v4 message is pending'
|
||||
SendStatus.Sent,
|
||||
'send state for v4 message is sent'
|
||||
);
|
||||
|
||||
assert.strictEqual(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue