import { render } from "@testing-library/preact"; import RouteDestination from "./RouteDestination"; describe("RouteDestination", () => { test("should display destination", () => { const { container } = render( // @ts-expect-error bad type definition , ); expect(container.textContent).toMatch("foo"); }); });