Add test to attachRelation

This commit is contained in:
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

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', () => {