Files
element-web/test/unit-tests/async-components/structures/ErrorView-test.tsx
T

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

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-09-23 09:42:03 +01:00
/*
2024-09-06 15:44:31 +01:00
Copyright 2024 New Vector Ltd.
2022-09-23 09:42:03 +01:00
Copyright 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-09-23 09:42:03 +01:00
*/
2025-03-19 10:39:52 +00:00
import React from "react";
2024-10-15 14:57:26 +01:00
import { render } from "jest-matrix-react";
2022-09-23 09:42:03 +01:00
2024-10-15 14:57:26 +01:00
import SdkConfig from "../../../../src/SdkConfig";
import { ErrorView, UnsupportedBrowserView } from "../../../../src/async-components/structures/ErrorView";
2023-09-26 12:28:31 +01:00
import { setupLanguageMock } from "../../../setup/setupLanguage";
2022-09-23 09:42:03 +01:00
describe("<ErrorView />", () => {
2023-09-26 12:28:31 +01:00
beforeEach(() => {
setupLanguageMock();
});
2022-09-23 09:42:03 +01:00
it("should match snapshot", () => {
const { asFragment } = render(<ErrorView title="TITLE" messages={["MSG1", "MSG2"]} />);
expect(asFragment()).toMatchSnapshot();
});
});
describe("<UnsupportedBrowserView />", () => {
beforeEach(() => {
setupLanguageMock();
SdkConfig.put({});
});
it("should match snapshot", () => {
const { asFragment } = render(<UnsupportedBrowserView />);
expect(asFragment()).toMatchSnapshot();
});
});