mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
491f0cd08a
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
67 lines
2.5 KiB
TypeScript
67 lines
2.5 KiB
TypeScript
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
* Copyright 2024 The Matrix.org Foundation C.I.C.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { act, render, screen, waitFor } from "@testing-library/react";
|
|
|
|
import { ReleaseAnnouncement } from "../../../src/components/structures/ReleaseAnnouncement";
|
|
import Modal, { ModalManagerEvent } from "../../../src/Modal";
|
|
import { ReleaseAnnouncementStore } from "../../../src/stores/ReleaseAnnouncementStore";
|
|
|
|
describe("ReleaseAnnouncement", () => {
|
|
beforeEach(async () => {
|
|
// Reset the singleton instance of the ReleaseAnnouncementStore
|
|
// @ts-ignore
|
|
ReleaseAnnouncementStore.internalInstance = new ReleaseAnnouncementStore();
|
|
});
|
|
|
|
function renderReleaseAnnouncement() {
|
|
return render(
|
|
<ReleaseAnnouncement
|
|
feature="threadsActivityCentre"
|
|
header="header"
|
|
description="description"
|
|
closeLabel="close"
|
|
>
|
|
<div>content</div>
|
|
</ReleaseAnnouncement>,
|
|
);
|
|
}
|
|
|
|
test("render the release announcement and close it", async () => {
|
|
renderReleaseAnnouncement();
|
|
|
|
// The release announcement is displayed
|
|
expect(screen.queryByRole("dialog", { name: "header" })).toBeVisible();
|
|
// Click on the close button in the release announcement
|
|
screen.getByRole("button", { name: "close" }).click();
|
|
// The release announcement should be hidden after the close button is clicked
|
|
await waitFor(() => expect(screen.queryByRole("dialog", { name: "header" })).toBeNull());
|
|
});
|
|
|
|
test("when a dialog is opened, the release announcement should not be displayed", async () => {
|
|
renderReleaseAnnouncement();
|
|
// The release announcement is displayed
|
|
expect(screen.queryByRole("dialog", { name: "header" })).toBeVisible();
|
|
|
|
// Open a dialog
|
|
act(() => {
|
|
Modal.emit(ModalManagerEvent.Opened);
|
|
});
|
|
// The release announcement should be hidden after the dialog is opened
|
|
expect(screen.queryByRole("dialog", { name: "header" })).toBeNull();
|
|
|
|
// Close the dialog
|
|
act(() => {
|
|
Modal.emit(ModalManagerEvent.Closed);
|
|
});
|
|
// The release announcement should be displayed after the dialog is closed
|
|
expect(screen.queryByRole("dialog", { name: "header" })).toBeVisible();
|
|
});
|
|
});
|