2022-10-13 08:22:34 +00:00
|
|
|
/*
|
2024-09-06 14:44:31 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-13 08:22:34 +00:00
|
|
|
Copyright 2016-2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-06 14:44:31 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-13 08:22:34 +00:00
|
|
|
*/
|
|
|
|
|
2024-10-15 13:57:26 +00:00
|
|
|
import { RenderResult, screen, waitFor } from "jest-matrix-react";
|
|
|
|
|
2022-03-16 16:35:09 +00:00
|
|
|
export * from "./beacon";
|
|
|
|
export * from "./client";
|
2022-03-28 16:46:39 +00:00
|
|
|
export * from "./location";
|
2022-03-21 11:42:58 +00:00
|
|
|
export * from "./platform";
|
2022-04-21 16:14:10 +00:00
|
|
|
export * from "./poll";
|
2022-03-29 16:18:34 +00:00
|
|
|
export * from "./room";
|
2022-02-23 11:21:11 +00:00
|
|
|
export * from "./test-utils";
|
2022-08-30 19:13:39 +00:00
|
|
|
export * from "./call";
|
2022-02-23 11:21:11 +00:00
|
|
|
export * from "./wrappers";
|
|
|
|
export * from "./utilities";
|
2022-10-18 01:54:10 +00:00
|
|
|
export * from "./date";
|
2022-11-07 14:19:49 +00:00
|
|
|
export * from "./relations";
|
2022-11-23 08:01:42 +00:00
|
|
|
export * from "./console";
|
2023-08-30 06:52:41 +00:00
|
|
|
|
|
|
|
// 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"));
|
|
|
|
}
|