@webex/internal-plugin-conversation 2.29.3 → 2.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -738,8 +738,8 @@ describe('plugin-conversation', function () {
738
738
  parentActivityId: parent.id,
739
739
  activityType: 'reply'
740
740
  }).then(({parent: parentObj} = {}) => {
741
- assert.equal(parentObj?.type, 'reply');
742
- assert.equal(parentObj?.id, parent.id);
741
+ assert.equal(parentObj.type, 'reply');
742
+ assert.equal(parentObj.id, parent.id);
743
743
 
744
744
  return webex.internal.conversation.listParentActivityIds(conversation.url, {activityType: 'reply'});
745
745
  }).then(({reply}) => {
@@ -872,9 +872,7 @@ describe('plugin-conversation', function () {
872
872
  }
873
873
  },
874
874
  {
875
- object: {
876
- ...message
877
- }
875
+ object: message
878
876
  }
879
877
  );
880
878