From a7cdee8c1d2390ee3ed09f8be90c7df9b94bb5bf Mon Sep 17 00:00:00 2001 From: EugeneKisel-sm Date: Mon, 22 Dec 2025 16:27:42 +0100 Subject: [PATCH 1/3] Remove codecov badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 41c7820..2721c95 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Conductor OSS JavaScript/TypeScript SDK [![Build Status](https://github.com/conductor-oss/javascript-sdk/actions/workflows/pull_request.yml/badge.svg)](https://github.com/conductor-oss/javascript-sdk/actions/workflows/pull_request.yml) -[![codecov](https://codecov.io/gh/conductor-oss/javascript-sdk/graph/badge.svg?token=CNCOB0N3FI)](https://codecov.io/gh/conductor-oss/javascript-sdk) A comprehensive TypeScript/JavaScript client for [Conductor OSS](https://github.com/conductor-oss/conductor), enabling developers to build, orchestrate, and monitor distributed workflows with ease. From c27ac6e3cdf7538824e98e863c08fda9231be325 Mon Sep 17 00:00:00 2001 From: Dmitry Borisov Date: Mon, 22 Dec 2025 19:34:37 +0300 Subject: [PATCH 2/3] Add timeout for worker --- src/integration-tests/WorkflowExecutor.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/integration-tests/WorkflowExecutor.test.ts b/src/integration-tests/WorkflowExecutor.test.ts index 8c481ad..879ef3b 100644 --- a/src/integration-tests/WorkflowExecutor.test.ts +++ b/src/integration-tests/WorkflowExecutor.test.ts @@ -188,6 +188,8 @@ describe("WorkflowExecutor", () => { "RUNNING" ); + await new Promise((resolve) => setTimeout(resolve, 5000)); + expect(["IN_PROGRESS", "SCHEDULED"]).toContain( workflowStatusBefore.tasks?.[0]?.status ); From 49afab573b07c4c3b54b3c5482accf4901e5ce8e Mon Sep 17 00:00:00 2001 From: Dmitry Borisov Date: Mon, 22 Dec 2025 19:40:41 +0300 Subject: [PATCH 3/3] adjust timing for worker --- src/integration-tests/WorkflowExecutor.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/integration-tests/WorkflowExecutor.test.ts b/src/integration-tests/WorkflowExecutor.test.ts index 879ef3b..98dd0eb 100644 --- a/src/integration-tests/WorkflowExecutor.test.ts +++ b/src/integration-tests/WorkflowExecutor.test.ts @@ -202,7 +202,9 @@ describe("WorkflowExecutor", () => { const workflowStatusAfter = await waitForWorkflowStatus( executor, executionId, - "COMPLETED" + "COMPLETED", + 120000, + 5000 ); expect(workflowStatusAfter.tasks?.[0]?.status).toEqual("COMPLETED");