mirror of
https://github.com/andrewyng/openworker.git
synced 2026-09-03 04:49:26 +00:00
ws ready now carries running (server truth); the GUI restores Stop + the waiting row and never shows the intro hero mid-turn.
22 lines
1.1 KiB
TypeScript
22 lines
1.1 KiB
TypeScript
// Reconnect-mid-turn (owner catch 2026-08-24, v0.2.0 walkthrough): opening a session
|
|
// whose turn is already running server-side never sees a live `turn_start`, so `running`
|
|
// must be restored from the ws `ready` payload — otherwise the Stop button and the
|
|
// "Waiting for agent" row vanish and the user cannot stop the turn.
|
|
import { expect } from "@playwright/test";
|
|
import { test } from "./fixtures";
|
|
|
|
test("opening a session with a live turn shows Stop and the waiting row", async ({ page }) => {
|
|
await page.goto("/");
|
|
// "Long audit" is below the sidebar's peek cap — expand the list first.
|
|
await page.getByRole("button", { name: /Show more/ }).first().click();
|
|
await page.getByTitle("Long audit").click();
|
|
|
|
// ready carried running:true — Stop replaces Send, the waiting row spins.
|
|
await expect(page.getByRole("button", { name: /Stop/ })).toBeVisible();
|
|
await expect(page.getByText("Waiting for agent...")).toBeVisible();
|
|
|
|
// An idle session still gets the plain send arrow (running:false path).
|
|
await page.getByText("Draft the launch note").first().click();
|
|
await expect(page.getByRole("button", { name: /Stop/ })).toHaveCount(0);
|
|
});
|