diff --git a/plugins/workflows/src/server-harness.test.ts b/plugins/workflows/src/server-harness.test.ts index 71f204ac9e..3bfbf88fc5 100644 --- a/plugins/workflows/src/server-harness.test.ts +++ b/plugins/workflows/src/server-harness.test.ts @@ -20,6 +20,8 @@ async function eventually( } } +const STRUCTURED_WORKFLOW_TEST_TIMEOUT_MS = 30_000; + async function workflowStatus( harness: ReturnType["harness"], runId: string, @@ -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" });