2022-07-06 19:29:26 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-07-06 19:29:26 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-07-06 19:29:26 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2022-07-06 19:29:26 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import MediaProcessingError from "../../../../../../src/components/views/messages/shared/MediaProcessingError";
|
2022-07-06 19:29:26 +08:00
|
|
|
|
|
|
|
describe("<MediaProcessingError />", () => {
|
|
|
|
const defaultProps = {
|
|
|
|
className: "test-classname",
|
|
|
|
children: "Something went wrong",
|
|
|
|
};
|
|
|
|
const getComponent = (props = {}) => render(<MediaProcessingError {...defaultProps} {...props} />);
|
|
|
|
|
|
|
|
it("renders", () => {
|
|
|
|
const { container } = getComponent();
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|