2023-04-26 12:36:00 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-04-26 12:36:00 +03:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 16:57:16 +03:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-04-26 12:36:00 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-14 19:11:58 +03:00
|
|
|
import { render } from "jest-matrix-react";
|
2023-04-26 12:36:00 +03:00
|
|
|
|
2024-10-15 16:57:26 +03:00
|
|
|
import SdkConfig from "../../../../../src/SdkConfig";
|
|
|
|
import FeedbackDialog from "../../../../../src/components/views/dialogs/FeedbackDialog";
|
2023-04-26 12:36:00 +03:00
|
|
|
|
|
|
|
describe("FeedbackDialog", () => {
|
|
|
|
it("should respect feedback config", () => {
|
|
|
|
SdkConfig.put({
|
|
|
|
feedback: {
|
|
|
|
existing_issues_url: "http://existing?foo=bar",
|
|
|
|
new_issue_url: "https://new.issue.url?foo=bar",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const { asFragment } = render(<FeedbackDialog onFinished={jest.fn()} />);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|