1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-07-30 04:23:07 +03:00

Pre-lint format

This commit is contained in:
Travis Ralston
2021-06-09 21:55:06 -06:00
parent b3a11030f2
commit bcccc909c5
4 changed files with 34 additions and 34 deletions

View File

@ -128,10 +128,10 @@ describe("MSC3089Branch", () => {
it('should be able to return event information', async () => {
const mxcLatter = "example.org/file";
const fileContent = {isFile: "not quite", url: "mxc://" + mxcLatter};
const fileContent = { isFile: "not quite", url: "mxc://" + mxcLatter };
const eventsArr = [
{getId: () => "$not-file", getContent: () => ({})},
{getId: () => fileEventId, getContent: () => ({file: fileContent})},
{ getId: () => "$not-file", getContent: () => ({}) },
{ getId: () => fileEventId, getContent: () => ({ file: fileContent }) },
];
client.getEventTimeline = () => Promise.resolve({
getEvents: () => eventsArr,