mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
dd06dd89d1
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.
28 lines
938 B
TypeScript
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();
|
|
});
|
|
});
|