// @vitest-environment jsdom import "@testing-library/jest-dom/vitest"; import { en } from "@snapotter/shared"; import { cleanup, render, screen } from "@testing-library/react"; import { afterEach, describe, expect, it } from "vitest"; import { RemoveBgControls } from "@/components/tools/remove-bg-settings"; import { UpscaleControls } from "@/components/tools/upscale-settings"; afterEach(cleanup); // A user on a CPU-only NUC was surprised AI upscale timed out ("unless my // system is just underpowered"). These notices set that expectation up front. describe("AI CPU expectation notice (#591)", () => { it("upscale settings warn that it is slow without a GPU", () => { render(); expect(screen.getByTestId("upscale-cpu-note")).toHaveTextContent( en.toolSettings.upscale.cpuNote, ); expect(en.toolSettings.upscale.cpuNote).toMatch(/GPU/); }); it("remove-background settings warn that it is slow without a GPU", () => { render( {}} />); expect(screen.getByTestId("remove-bg-cpu-note")).toHaveTextContent( en.toolSettings["remove-background"].cpuNote, ); expect(en.toolSettings["remove-background"].cpuNote).toMatch(/GPU/); }); });