(ws: Workspace)
| 88 | } |
| 89 | |
| 90 | async function runCommand(ws: Workspace): Promise<WorkspaceRetryPendingSyncResult | undefined> { |
| 91 | const handle = await ws.runtime.exec("build", { encoding: "utf8" }); |
| 92 | const result = await handle.result(); |
| 93 | expect(result.sync.status).toBe("pending"); |
| 94 | return undefined; |
| 95 | } |
| 96 | |
| 97 | describe("Workspace durable pending-sync retries", () => { |
| 98 | it("schedules the exact durable retry intent after a post-command pull failure", async () => { |
no test coverage detected