Files
Jordan Ritter dd06dd89d1 refactor(showcase): rename packages/ to integrations/
The showcase framework directories better reflect their role as
integration examples rather than distributable packages.
Renames showcase/packages/ -> showcase/integrations/ and updates
the test docker-compose file reference accordingly.
2026-04-28 07:47:35 -07:00

28 lines
938 B
TypeScript

import { test, expect } from "@playwright/test";
test.describe("Authentication", () => {
test.beforeEach(async ({ page }) => {
await page.goto("/demos/auth");
});
test("banner starts authenticated by default", async ({ page }) => {
const banner = page.locator('[data-testid="auth-banner"]');
await expect(banner).toBeVisible();
await expect(banner).toHaveAttribute("data-authenticated", "true");
await expect(
page.locator('[data-testid="auth-sign-out-button"]'),
).toBeVisible();
});
test("sign-out transitions the banner to unauthenticated", async ({
page,
}) => {
await page.locator('[data-testid="auth-sign-out-button"]').click();
const banner = page.locator('[data-testid="auth-banner"]');
await expect(banner).toHaveAttribute("data-authenticated", "false");
await expect(
page.locator('[data-testid="auth-authenticate-button"]'),
).toBeVisible();
});
});