import { describe, expect, test } from "../support/fixtures";

describe("Sample E2E Test", () => {
  test("Can log in and navigate to app", async ({ page, login }) => {
    await login();

    // Example: Test your application here
    // await expect(page.getByTestId("your-app-element")).toBeVisible();

    // Example: Test Iris app integration
    // const app = irisApp();
    // await expect(app.getByTestId("your-test-id")).toBeVisible();

    await expect(page.locator("#host-layout-content")).toBeVisible();
  });
});
