Files
clawmates/frontend/tests/e2e/p1-chat.spec.ts
T
Omar SobhandClaude Opus 4.8 8d9ea7faaa Login: match WorkClaw's /sign-in form exactly (progressive, Clawmates)
The live /sign-in is a Clerk-rendered SignInForm (SSR is just a spinner); the
rendered design is the email-first progressive form. Reworked our /login to
match it visually while keeping our real email+password auth underneath.

- Email step: "Sign up with Slack" (cosmetic), OR, Work Email / Phone Number
  tabs, work-email field, "Continue with work email →", "Other SSO Options".
  Slack / Phone / SSO are cosmetic placeholders we don't support yet.
- Password step: "Continue" reveals the password field + "Sign in" (our actual
  POST to /auth/session). A Back link returns to the email step.
- Headline now mirrors WorkClaw ("Multiply your team's brainpower" / "Sign up
  to get early access").
- Right panel is now the role-card roster grid (PawPrint avatars, our own
  roles) + "The AI crew for your team" + the claws-at-desk art.
- Updated all eight E2E signIn helpers (and the load assertions) for the new
  two-step flow: fill Email → Continue → fill Password → Sign in. Labels
  (Email/Password) and the "Sign in" button name are preserved.
- A11y: bumped the inactive tab text to full slate (was 3.41:1).

typecheck/lint/build green · p0-shell (full sign-in) green · p6-a11y (login
clean) green · all six @visual baselines green (login regenerated) · deployed
and verified live.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
2026-06-13 14:27:53 -05:00

155 lines
5.7 KiB
TypeScript

import { expect, test, type Page } from "@playwright/test";
// P1 exit criterion (spec §17): a multi-session conversation with
// replayable step traces, end-to-end against the real backend running the
// scripted provider (deploy/e2e/scenarios.toml).
const OWNER_EMAIL = "[email protected]";
const OWNER_PASSWORD = "e2e-password";
async function signIn(page: Page) {
await page.goto("/login");
await page.getByLabel("Email").fill(OWNER_EMAIL);
await page.getByRole("button", { name: /Continue with work email/ }).click();
await page.getByLabel("Password").fill(OWNER_PASSWORD);
await page.getByRole("button", { name: "Sign in" }).click();
await expect(page.getByRole("heading", { name: "Clawmates" })).toBeVisible();
}
async function openScout(page: Page) {
await page.getByRole("link", { name: /Scout/ }).click();
await expect(page).toHaveURL(/\/claws\/.+\/chat\//);
}
/** Clicks "New" and waits for the navigation: the previous session may show
* the same welcome heading, so the URL change is the reliable signal. */
async function newSession(page: Page) {
const before = page.url();
await page.getByRole("button", { name: "New" }).click();
await page.waitForURL((url) => url.toString() !== before);
}
async function sendMessage(page: Page, text: string) {
const box = page.getByLabel("Message Scout");
await box.fill(text);
await box.press("Enter");
}
test("welcome state appears for a fresh session", async ({ page }) => {
await signIn(page);
await openScout(page);
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await expect(
page.getByRole("button", { name: "Create a daily briefing" }),
).toBeVisible();
});
test("a message streams back a scripted reply", async ({ page }) => {
await signIn(page);
await openScout(page);
await sendMessage(page, "hello [[scenario:hello]]");
await expect(page.getByText("hello [[scenario:hello]]")).toBeVisible();
await expect(
page.getByText("Hello! I'm Scout, your research analyst."),
).toBeVisible();
});
test("tool runs render a step trace that survives reload", async ({ page }) => {
await signIn(page);
await openScout(page);
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "what time is it? [[scenario:tool-time]]");
await expect(page.getByText(/I checked the current time/)).toBeVisible();
const trace = page.getByRole("button", { name: /1 step/ });
await expect(trace).toBeVisible();
await trace.click();
await expect(page.getByText(/clock\.now/)).toBeVisible();
// Reload: history replays the identical transcript and trace (§13).
await page.reload();
await expect(page.getByText(/I checked the current time/)).toBeVisible();
const replayedTrace = page.getByRole("button", { name: /1 step/ });
await replayedTrace.click();
await expect(page.getByText(/clock\.now/)).toBeVisible();
});
test("multiple sessions hold separate transcripts", async ({ page }) => {
await signIn(page);
await openScout(page);
// First session.
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "first session message");
await expect(page.getByText("I received: first session message")).toBeVisible();
// Second session.
await newSession(page);
await expect(
page.getByRole("heading", { name: /Hi, I'm Scout/ }),
).toBeVisible();
await sendMessage(page, "second session message");
await expect(
page.getByText("I received: second session message"),
).toBeVisible();
await expect(page.getByText("first session message")).not.toBeVisible();
// Switch back via the sessions column (?sessions=1, §6). Rows sort most
// recently active first: [current, first-session, original]; the first
// non-active row is the session we just left.
await page.getByRole("button", { name: "Sessions" }).click();
const column = page.getByRole("complementary", { name: "Sessions" });
await expect(column.getByRole("listitem").first()).toBeVisible();
await column
.locator("button:not([aria-current])")
.filter({ hasText: "Untitled" })
.first()
.click();
await expect(page.getByText("I received: first session message")).toBeVisible();
});
test("the 3-step wizard creates a live claw and lands in its chat", async ({
page,
}) => {
await signIn(page);
await page.getByRole("link", { name: "New claw" }).click();
// Step 1: identity (accent swatch + name + title).
await page.getByRole("radio", { name: "Accent #65a8f9" }).click();
await page.getByLabel("Name", { exact: true }).fill("Drafter");
await page.getByLabel("Job title").fill("Writer");
await page.getByLabel("Job description").fill("You draft crisp documents.");
await page.getByRole("button", { name: "Continue →" }).click();
// Step 2: access.
await expect(page).toHaveURL(/step=access/);
await page.getByRole("radio", { name: /Any Claw on the team/ }).click();
await page.getByRole("button", { name: "Continue →" }).click();
// Step 3: slack (optional) → explicit confirm before the agent goes live.
await expect(page).toHaveURL(/step=slack/);
await page.getByRole("button", { name: "Review & create" }).click();
await expect(page.getByText("Create Drafter?")).toBeVisible();
await page.getByRole("button", { name: "Create claw" }).click();
await expect(page).toHaveURL(/\/claws\/.+\/chat\//);
await expect(
page.getByRole("heading", { name: /Hi, I'm Drafter/ }),
).toBeVisible();
const box = page.getByLabel("Message Drafter");
await box.fill("ping");
await box.press("Enter");
await expect(page.getByText("I received: ping")).toBeVisible();
});