Moves sendMessage and friends to redux
This commit is contained in:
parent
7ea38bb1a9
commit
2378776e1b
27 changed files with 517 additions and 537 deletions
|
@ -103,17 +103,23 @@ describe('both/state/ducks/composer', () => {
|
|||
describe('resetComposer', () => {
|
||||
it('returns composer back to empty state', () => {
|
||||
const { resetComposer } = actions;
|
||||
const emptyState = getEmptyState();
|
||||
const nextState = reducer(
|
||||
{
|
||||
attachments: [],
|
||||
isDisabled: false,
|
||||
linkPreviewLoading: true,
|
||||
messageCompositionId: emptyState.messageCompositionId,
|
||||
quotedMessage: QUOTED_MESSAGE,
|
||||
shouldSendHighQualityAttachments: true,
|
||||
},
|
||||
resetComposer()
|
||||
);
|
||||
|
||||
assert.deepEqual(nextState, getEmptyState());
|
||||
assert.deepEqual(nextState, {
|
||||
...getEmptyState(),
|
||||
messageCompositionId: nextState.messageCompositionId,
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue