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.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
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
|
|
|
|
2022-03-16 17:35:09 +01:00
|
|
|
export * from "./beacon";
|
|
|
|
|
export * from "./client";
|
2022-03-28 18:46:39 +02:00
|
|
|
export * from "./location";
|
2022-03-21 12:42:58 +01:00
|
|
|
export * from "./platform";
|
2022-04-21 18:14:10 +02:00
|
|
|
export * from "./poll";
|
2022-03-29 18:18:34 +02:00
|
|
|
export * from "./room";
|
2022-02-23 12:21:11 +01:00
|
|
|
export * from "./test-utils";
|
2022-08-30 15:13:39 -04:00
|
|
|
export * from "./call";
|
2022-02-23 12:21:11 +01:00
|
|
|
export * from "./wrappers";
|
|
|
|
|
export * from "./utilities";
|
2022-10-17 19:54:10 -06:00
|
|
|
export * from "./date";
|
2022-11-07 15:19:49 +01:00
|
|
|
export * from "./relations";
|
2022-11-23 09:01:42 +01:00
|
|
|
export * from "./console";
|
2023-08-30 09:52:41 +03: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"));
|
|
|
|
|
}
|