Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
/*
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { render, screen, waitFor } from "jest-matrix-react";
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import SettingsField from "../../../../../src/components/views/elements/SettingsField";
|
|
import { SettingLevel } from "../../../../../src/settings/SettingLevel.ts";
|
|
|
|
describe("<SettingsField />", () => {
|
|
it("should render with the default label", () => {
|
|
const component = render(<SettingsField settingKey="Developer.elementCallUrl" level={SettingLevel.DEVICE} />);
|
|
|
|
expect(screen.getByText("Element Call URL")).toBeTruthy();
|
|
expect(component.asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
it("should call onChange when saving a change", async () => {
|
|
const fn = jest.fn();
|
|
render(<SettingsField settingKey="Developer.elementCallUrl" level={SettingLevel.DEVICE} onChange={fn} />);
|
|
|
|
const input = screen.getByRole("textbox");
|
|
await userEvent.type(input, "https://call.element.dev");
|
|
expect(input).toHaveValue("https://call.element.dev");
|
|
|
|
screen.getByLabelText("Save").click();
|
|
await waitFor(() => {
|
|
expect(fn).toHaveBeenCalledWith("https://call.element.dev");
|
|
});
|
|
});
|
|
});
|