import { describe, expect, it } from "vitest";

describe("application title configuration", () => {
  it("serves the requested gngpasse title from the app shell", async () => {
    const response = await fetch("http://localhost:3000/");
    expect(response.ok).toBe(true);
    const html = await response.text();
    expect(html).toContain("gngpasse");
    expect(html).not.toContain("gng event pass services");
  });
});
