|
|
|
@ -24,7 +24,6 @@ describe('Conversation', () => {
|
|
|
|
|
context('for regular message', () => {
|
|
|
|
|
it('should update last message text and timestamp', () => {
|
|
|
|
|
const input = {
|
|
|
|
|
currentLastMessageText: 'Existing message',
|
|
|
|
|
currentTimestamp: 555,
|
|
|
|
|
lastMessageStatus: 'read',
|
|
|
|
|
lastMessage: {
|
|
|
|
@ -48,7 +47,6 @@ describe('Conversation', () => {
|
|
|
|
|
context('for verified change message', () => {
|
|
|
|
|
it('should skip update', () => {
|
|
|
|
|
const input = {
|
|
|
|
|
currentLastMessageText: 'bingo',
|
|
|
|
|
currentTimestamp: 555,
|
|
|
|
|
lastMessage: {
|
|
|
|
|
type: 'verified-change',
|
|
|
|
@ -59,7 +57,7 @@ describe('Conversation', () => {
|
|
|
|
|
lastMessageNotificationText: 'Verified Changed',
|
|
|
|
|
};
|
|
|
|
|
const expected = {
|
|
|
|
|
lastMessage: 'bingo',
|
|
|
|
|
lastMessage: '',
|
|
|
|
|
lastMessageStatus: null,
|
|
|
|
|
timestamp: 555,
|
|
|
|
|
};
|
|
|
|
@ -72,7 +70,6 @@ describe('Conversation', () => {
|
|
|
|
|
context('for expire timer update from sync', () => {
|
|
|
|
|
it('should update message but not timestamp (to prevent bump to top)', () => {
|
|
|
|
|
const input = {
|
|
|
|
|
currentLastMessageText: 'I am expired',
|
|
|
|
|
currentTimestamp: 555,
|
|
|
|
|
lastMessage: {
|
|
|
|
|
type: 'incoming',
|
|
|
|
|