/* * Copyright (C) 2019-2025 CZ.NIC z.s.p.o. (https://www.nic.cz/) * * This is free software, licensed under the GNU General Public License v3. * See /LICENSE for more information. */ import React from "react"; import { render, waitFor, getByText } from "customTestRender"; import mockAxios from "jest-mock-axios"; import { useCustomizationContext, CustomizationContextProvider, } from "../CustomizationContext"; const CUSTOM = "Description / component for customized reForis (Shield)"; const ORIGINAL = "Description / component for original reForis (other devices)"; const CustomizationTest = () => { const { isCustomized } = useCustomizationContext(); return
{isCustomized ? CUSTOM : ORIGINAL}
; }; describe("CustomizationContext", () => { let componentContainer; beforeEach(() => { const { container } = render(