Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion plugins/workflows/src/server-harness.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ async function eventually(
}
}

const STRUCTURED_WORKFLOW_TEST_TIMEOUT_MS = 30_000;

async function workflowStatus(
harness: ReturnType<typeof createFakePluginHost>["harness"],
runId: string,
Expand Down Expand Up @@ -712,7 +714,7 @@ describe("workflows plugin", () => {

worker.controller.abort();
await worker.done;
});
}, STRUCTURED_WORKFLOW_TEST_TIMEOUT_MS);

it("rejects cyclic and unsafe host values before persistence", async () => {
const { bb, harness } = createFakePluginHost({ pluginId: "workflows" });
Expand Down
Loading