Files
ThreadNet-Web/test/test-utils/index.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
971 B
TypeScript
Raw Normal View History

2022-10-13 09:22:34 +01:00
/*
2024-09-06 15:44:31 +01:00
Copyright 2024 New Vector Ltd.
2022-10-13 09:22:34 +01:00
Copyright 2016-2022 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-06 15:44:31 +01:00
Please see LICENSE files in the repository root for full details.
2022-10-13 09:22:34 +01:00
*/
2025-02-05 13:25:06 +00:00
import { type RenderResult, screen, waitFor } from "jest-matrix-react";
2024-10-15 14:57:26 +01:00
export * from "./beacon";
export * from "./client";
export * from "./location";
export * from "./platform";
2022-04-21 18:14:10 +02:00
export * from "./poll";
export * from "./room";
2022-02-23 12:21:11 +01:00
export * from "./test-utils";
export * from "./call";
2022-02-23 12:21:11 +01:00
export * from "./wrappers";
export * from "./utilities";
export * from "./date";
export * from "./relations";
2022-11-23 09:01:42 +01:00
export * from "./console";
// wait for loading page
export async function waitForLoadingSpinner(): Promise<void> {
await screen.findByRole("progressbar");
}
export async function waitForWelcomeComponent(matrixChat?: RenderResult): Promise<void> {
await waitFor(() => matrixChat?.container.querySelector(".mx_Welcome"));
}