import { describe, expect, it } from "vitest";
import { render, screen } from "@testing-library/react";
import NotFound from "@/app/not-found";

describe("NotFound", () => {
  it("renders the fallback status and guidance", () => {
    render(<NotFound />);
    expect(screen.getByRole("heading", { name: "404" })).toBeInTheDocument();
    expect(screen.getByText("This page has not been generated")).toBeInTheDocument();
    expect(screen.getByText("Tell me what you would like on this page")).toBeInTheDocument();
  });
});
