Files
ThreadNet-Web/apps/web/test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx
T

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

20 lines
598 B
TypeScript
Raw Normal View History

2022-09-30 18:27:59 +01:00
/*
2024-09-06 15:44:31 +01:00
Copyright 2024 New Vector Ltd.
2022-09-30 18:27:59 +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-30 18:27:59 +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-30 18:27:59 +01:00
2024-11-05 15:41:00 +00:00
import AuthHeaderLogo from "../../../../../src/components/views/auth/AuthHeaderLogo";
2022-09-30 18:27:59 +01:00
2024-11-05 15:41:00 +00:00
describe("<AuthHeaderLogo />", () => {
2022-09-30 18:27:59 +01:00
it("should match snapshot", () => {
2024-11-05 15:41:00 +00:00
const { asFragment } = render(<AuthHeaderLogo />);
2022-09-30 18:27:59 +01:00
expect(asFragment()).toMatchSnapshot();
});
});