From 9082e07ff471914f2051f63fd224b76e6bfa38ea Mon Sep 17 00:00:00 2001 From: Kerry Date: Thu, 10 Mar 2022 19:15:31 +0100 Subject: [PATCH] include test/utils in tsconfig (#8024) * fix export-test.tsx Signed-off-by: Kerry Archibald * include test/utils to tsconfig Signed-off-by: Kerry Archibald --- test/utils/export-test.tsx | 9 ++++++--- tsconfig.json | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/test/utils/export-test.tsx b/test/utils/export-test.tsx index c1128d22714..48c72bc763f 100644 --- a/test/utils/export-test.tsx +++ b/test/utils/export-test.tsx @@ -15,7 +15,7 @@ limitations under the License. */ import { renderToString } from "react-dom/server"; -import { IContent, MatrixClient, MatrixEvent, Room } from "matrix-js-sdk/src/matrix"; +import { IContent, MatrixClient, MatrixEvent, Room, RoomMember, RelationType } from "matrix-js-sdk/src/matrix"; import { MatrixClientPeg } from "../../src/MatrixClientPeg"; import { IExportOptions, ExportType, ExportFormat } from "../../src/utils/exportUtils/exportUtils"; @@ -120,13 +120,16 @@ describe('export', function() { } // reply events for (i = 0; i < 10; i++) { + const eventId = "$" + Math.random() + "-" + Math.random(); matrixEvents.push(TestUtilsMatrix.mkEvent({ "content": { "body": "> <@me:here> Hi\n\nTest", "format": "org.matrix.custom.html", "m.relates_to": { + "rel_type": RelationType.Reference, + "event_id": eventId, "m.in_reply_to": { - "event_id": "$" + Math.random() + "-" + Math.random(), + "event_id": eventId, }, }, "msgtype": "m.text", @@ -148,7 +151,7 @@ describe('export', function() { return "avatar.jpeg"; }, getMxcAvatarUrl: () => 'mxc://avatar.url/image.png', - }, + } as unknown as RoomMember, ts: ts0 + i*1000, mship: 'join', prevMship: 'join', diff --git a/tsconfig.json b/tsconfig.json index 1412a95fe0a..4f896a72ea0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,5 +24,7 @@ "./src/**/*.tsx" , "./test/test-utils/**/*.ts", "./test/test-utils/**/*.tsx", + "./test/utils/**/*.ts", + "./test/utils/**/*.tsx", ], }