Files
moreminimore-vibe/e2e-tests/retry.spec.ts
2025-05-31 21:15:41 -07:00

14 lines
372 B
TypeScript

import { test } from "./helpers/test_helper";
test("retry - should work", async ({ po }) => {
await po.setUp();
await po.sendPrompt("[increment]");
await po.snapshotMessages();
await po.dismissAllToasts();
await po.clickRetry();
await po.expectNoToast();
// The counter should be incremented in the snapshotted messages.
await po.snapshotMessages();
});