Add test to attachRelation

pull/28217/head
Florian Duros 2022-10-14 16:42:45 +02:00
parent e8d0fb0ab0
commit d1a98b632e
No known key found for this signature in database
GPG Key ID: 9700AA5870258A0B
1 changed files with 21 additions and 0 deletions

View File

@ -76,6 +76,27 @@ describe('message', () => {
}, },
}); });
}); });
it("Should add relation to message", () => {
// When
const relation = {
rel_type: "m.thread",
event_id: "myFakeThreadId",
};
const content = createMessageContent(message, { permalinkCreator, relation });
// Then
expect(content).toEqual({
"body": message,
"format": "org.matrix.custom.html",
"formatted_body": message,
"msgtype": "m.text",
"m.relates_to": {
"event_id": "myFakeThreadId",
"rel_type": "m.thread",
},
});
});
}); });
describe('sendMessage', () => { describe('sendMessage', () => {