import { test, expect } from "@playwright/test";

test("has title", async ({ page }) => {
  await page.goto("/");
  expect(await page.title()).toBe("Create Jaydee App");
});
