mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 09:28:21 +08:00
b084ff2313
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
20 lines
545 B
TypeScript
20 lines
545 B
TypeScript
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
*
|
|
* 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 { render } from "jest-matrix-react";
|
|
|
|
import { PinnedMessageBadge } from "../../../../src/components/views/messages/PinnedMessageBadge.tsx";
|
|
|
|
describe("PinnedMessageBadge", () => {
|
|
it("should render", () => {
|
|
const { asFragment } = render(<PinnedMessageBadge />);
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
});
|