Skip to content

Commit 25bdeac

Browse files
Remove codecov badge (#98)
* Remove codecov badge * Add timeout for worker * adjust timing for worker --------- Co-authored-by: Dmitry Borisov <dmitry.borisov@siliconmint.com>
1 parent 9863e10 commit 25bdeac

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Conductor OSS JavaScript/TypeScript SDK
22

33
[![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)
4-
[![codecov](https://codecov.io/gh/conductor-oss/javascript-sdk/graph/badge.svg?token=CNCOB0N3FI)](https://codecov.io/gh/conductor-oss/javascript-sdk)
54

65
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.
76

src/integration-tests/WorkflowExecutor.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ describe("WorkflowExecutor", () => {
188188
"RUNNING"
189189
);
190190

191+
await new Promise((resolve) => setTimeout(resolve, 5000));
192+
191193
expect(["IN_PROGRESS", "SCHEDULED"]).toContain(
192194
workflowStatusBefore.tasks?.[0]?.status
193195
);
@@ -200,7 +202,9 @@ describe("WorkflowExecutor", () => {
200202
const workflowStatusAfter = await waitForWorkflowStatus(
201203
executor,
202204
executionId,
203-
"COMPLETED"
205+
"COMPLETED",
206+
120000,
207+
5000
204208
);
205209

206210
expect(workflowStatusAfter.tasks?.[0]?.status).toEqual("COMPLETED");

0 commit comments

Comments
 (0)