Files
moreminimore-vibe/e2e-tests/partial_response.spec.ts
2025-06-24 16:46:40 -07:00

13 lines
441 B
TypeScript

import { test } from "./helpers/test_helper";
test("partial message is resumed", async ({ po }) => {
await po.setUp({ autoApprove: true });
await po.importApp("minimal");
await po.sendPrompt("tc=partial-write");
// This is a special test case which triggers a dump.
await po.snapshotServerDump("all-messages");
await po.snapshotMessages({ replaceDumpPath: true });
await po.snapshotAppFiles({ name: "message-resumed" });
});