2022-03-22 14:57:12 +01:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-22 14:57:12 +01:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2025-01-06 12:18:54 +01:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 15:57:16 +02:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-03-22 14:57:12 +01:00
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import React from "react";
|
2024-10-14 18:11:58 +02:00
|
|
|
import { render } from "jest-matrix-react";
|
2022-03-22 14:57:12 +01:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
import StyledLiveBeaconIcon from "../../../../../src/components/views/beacon/StyledLiveBeaconIcon";
|
2022-03-22 14:57:12 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("<StyledLiveBeaconIcon />", () => {
|
2022-03-22 14:57:12 +01:00
|
|
|
const defaultProps = {};
|
2022-10-24 10:06:20 +02:00
|
|
|
const getComponent = (props = {}) => render(<StyledLiveBeaconIcon {...defaultProps} {...props} />);
|
2022-03-22 14:57:12 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("renders", () => {
|
2022-10-24 10:06:20 +02:00
|
|
|
const { asFragment } = getComponent();
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
2022-03-22 14:57:12 +01:00
|
|
|
});
|
|
|
|
});
|